Skip to content

Commit f2d9fde

Browse files
authored
Tests: Align :has selector tests with 3.x-stable
Consistently use `assert.selectInFixture` instead of prepending the selector with `#qunit-fixture ` manually. Closes gh-5498 Ref gh-5497
1 parent fa73e2f commit f2d9fde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/selector.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -960,8 +960,8 @@ QUnit[ QUnit.jQuerySelectors ? "test" : "skip" ]( "pseudo - has", function( asse
960960
// return no results. Make sure this is accounted for. (gh-5098)
961961
// Note: Chrome 105 has this behavior only in 105.0.5195.125 or newer;
962962
// initially it shipped with a fully forgiving parsing in `:has()`.
963-
assert.t( "Nested with list arguments",
964-
"#qunit-fixture div:has(faketag, div:has(faketag, div:not([id])))",
963+
assert.selectInFixture( "Nested with list arguments",
964+
"div:has(faketag, div:has(faketag, div:not([id])))",
965965
[ "moretests", "t2037", "fx-test-group", "fx-queue" ] );
966966
} );
967967

0 commit comments

Comments
 (0)