Skip to content

Commit

Permalink
Missed a file in revision 8f988e0
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Aug 4, 2014
1 parent c0bd222 commit 43db645
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions javascript/webdriver/test/webdriver_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ function testWebElement_resolvesBeforeCallbacksOnWireValueTrigger() {
messages.push('element resolved');
});

webdriver.promise.when(element.getId_(), function() {
webdriver.promise.when(element.getId(), function() {
messages.push('wire value resolved');
});

Expand Down Expand Up @@ -1822,7 +1822,7 @@ function testFindElements() {
function assertTypeAndId(index) {
assertTrue('Not a WebElement at index ' + index,
elements[index] instanceof webdriver.WebElement);
elements[index].getId_().
elements[index].getId().
then(callbacks[index] = callbackHelper(function(id) {
webdriver.test.testutil.assertObjectEquals(json[index], id);
}));
Expand Down Expand Up @@ -1864,7 +1864,7 @@ function testFindElements_byJs() {
function assertTypeAndId(index) {
assertTrue('Not a WebElement at index ' + index,
elements[index] instanceof webdriver.WebElement);
elements[index].getId_().
elements[index].getId().
then(callbacks[index] = callbackHelper(function(id) {
webdriver.test.testutil.assertObjectEquals(json[index], id);
}));
Expand Down Expand Up @@ -1910,7 +1910,7 @@ function testFindElements_byJs_filtersOutNonWebElementResponses() {
function assertTypeAndId(index, jsonIndex) {
assertTrue('Not a WebElement at index ' + index,
elements[index] instanceof webdriver.WebElement);
elements[index].getId_().
elements[index].getId().
then(callbacks[index] = callbackHelper(function(id) {
webdriver.test.testutil.assertObjectEquals(json[jsonIndex], id);
}));
Expand Down Expand Up @@ -1945,7 +1945,7 @@ function testFindElements_byJs_convertsSingleWebElementResponseToArray() {
then(callback1 = callbackHelper(function(elements) {
assertEquals(1, elements.length);
assertTrue(elements[0] instanceof webdriver.WebElement);
elements[0].getId_().
elements[0].getId().
then(callback2 = callbackHelper(function(id) {
webdriver.test.testutil.assertObjectEquals(json, id);
}));
Expand Down

0 comments on commit 43db645

Please sign in to comment.