Skip to content

Commit

Permalink
Fix a broken test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Jan 8, 2014
1 parent 92410fe commit 1159d0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions javascript/selenium-atoms/test/inject_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
function testCanExecuteScriptsInTheContextOfAnotherWindow() {
var testFrame = createTestFrame();
var testFrameWin = goog.dom.getFrameContentWindow(testFrame);
expectedFailures.expectFailureFor(bot.userAgent.IE_DOC_PRE9 ||
(goog.userAgent.product.ANDROID && !bot.userAgent.isEngineVersion(534)),
'Fails in IE before 9 - issue 3723');
expectedFailures.expectFailureFor(
(goog.userAgent.product.ANDROID &&
!bot.userAgent.isEngineVersion(534)));
expectedFailures.run(function() {
assertEquals('undefined',
executeScript('return typeof MY_GLOBAL_CONSTANT', testFrameWin));
Expand Down

0 comments on commit 1159d0e

Please sign in to comment.