Skip to content

Commit

Permalink
[js] Fix a broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Aug 21, 2016
1 parent f6e48fd commit 8b6ee4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/test/lib/webdriver_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1486,8 +1486,8 @@ describe('WebDriver', function() {
expect(CName.FIND_ELEMENT,
{'using':'css selector', 'value':'*[id="foo"]'}).
andReturnSuccess(WebElement.buildId('one')).
expect(CName.SEND_KEYS_TO_ELEMENT, {'id': 'one',
'value':['modified/path']}).
expect(CName.SEND_KEYS_TO_ELEMENT,
{'id': 'one', 'value':'modified/path'.split('')}).
andReturnSuccess().
end();

Expand Down

0 comments on commit 8b6ee4d

Please sign in to comment.