diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-02-08 00:20:33 -0500 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-02-08 00:20:33 -0500 |
commit | 67a2e4eaac98cee79a02a0a45e4826a7958d4b75 (patch) | |
tree | cc790889e055ad5c6d5cd82437dae765308ab95f /test/unit/selector.js | |
parent | a8518c3bc4e1a8755c2d3a7be624b0e86be1070b (diff) | |
download | jquery-67a2e4eaac98cee79a02a0a45e4826a7958d4b75.tar.gz jquery-67a2e4eaac98cee79a02a0a45e4826a7958d4b75.zip |
Ref #13316: Sync all test documents on full vs. minified source.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r-- | test/unit/selector.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index 07e563da3..22d7305eb 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -178,7 +178,8 @@ testIframe("selector/html5_selector", "attributes - jQuery.attr", function( jQue testIframe("selector/sizzle_cache", "Sizzle cache collides with multiple Sizzles on a page", function( jQuery, window, document ) { var $cached = window["$cached"]; - expect(3); + expect(4); + notStrictEqual( jQuery, $cached, "Loaded two engines" ); deepEqual( $cached(".test a").get(), [ document.getElementById("collision") ], "Select collision anchor with first sizzle" ); equal( jQuery(".evil a").length, 0, "Select nothing with second sizzle" ); equal( jQuery(".evil a").length, 0, "Select nothing again with second sizzle" ); |