diff options
-rw-r--r-- | test/unit/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/event.js b/test/unit/event.js index b46ef9ebb..155e971d7 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -2070,7 +2070,7 @@ test("window resize", function() { test("focusin bubbles", function() { expect(5); - var input = jQuery( "<input type='text' />" ).prependTo( "body" ), + var input = jQuery( '<input type="text" />' ).prependTo( "body" ), order = 0; jQuery( "body" ).bind( "focusin.focusinBubblesTest", function(){ |