]> source.dussan.org Git - jquery.git/commitdiff
Tests: fix another traverse test
authorOleg Gaidarenko <markelog@gmail.com>
Sun, 31 Jan 2016 09:09:48 +0000 (12:09 +0300)
committerOleg Gaidarenko <markelog@gmail.com>
Sun, 31 Jan 2016 09:09:48 +0000 (12:09 +0300)
Tricky test - if isolated, was executed fine, but falling
if runned with other tests

Ref b97c8d30c5aedace75dc17056d429f28e41b20c1

test/unit/traversing.js

index 2ad8ee8a800bbfbea2ba7f6db01f2b46778864ac..74da6d9730b5e041ffc98ef5bff2bf736677eb1a 100644 (file)
@@ -463,7 +463,11 @@ QUnit.test( "not(Array)", function( assert ) {
 QUnit.test( "not(jQuery)", function( assert ) {
        assert.expect( 1 );
 
-       assert.deepEqual( jQuery( "p" ).not( jQuery( "#ap, #sndp, .result" ) ).get(), q( "firstp", "en", "sap", "first" ), "not(jQuery)" );
+       assert.deepEqual(
+               jQuery( "#qunit-fixture p" ).not( jQuery( "#ap, #sndp, .result" ) ).get(),
+               q( "firstp", "en", "sap", "first" ),
+               "not(jQuery)"
+       );
 } );
 
 QUnit.test( "not(Selector) excludes non-element nodes (gh-2808)", function( assert ) {