Fix paranthesis

This commit is contained in:
Girish Ramakrishnan 2018-05-02 13:22:27 -07:00
parent 391419d9f4
commit 5c2828f669
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ describe('Application life cycle test', function () {
function checkFolder(callback) {
browser.get('https://' + app.fqdn).then(function () {
return browser.wait(until.elementLocated(by.xpath(`//span[text()="${FOLDER}"]`), TEST_TIMEOUT));
return browser.wait(until.elementLocated(by.xpath(`//span[text()="${FOLDER}"]`)), TEST_TIMEOUT);
}).then(function () {
callback();
});