diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-10-21 19:02:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 19:02:22 +0200 |
commit | 1d624c10b4a6b97ac254bcefffa91058556075d2 (patch) | |
tree | 996b1299b56dab10c2691838b9f46d32bc7de917 /test/data | |
parent | 26415e081b318dbe1d46d2b7c30e05f14c339b75 (diff) | |
download | jquery-1d624c10b4a6b97ac254bcefffa91058556075d2.tar.gz jquery-1d624c10b4a6b97ac254bcefffa91058556075d2.zip |
Tests: Stop using jQuery.find in tests
This prepares us for possibly hiding jQuery.find in jQuery 4.0.
Closes gh-4517
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/selector/mixed_sort.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/selector/mixed_sort.html b/test/data/selector/mixed_sort.html index 919b8ca66..03d6d79ef 100644 --- a/test/data/selector/mixed_sort.html +++ b/test/data/selector/mixed_sort.html @@ -11,7 +11,7 @@ <script> var doc = parent.document, unframed = [ doc.getElementById( "qunit-fixture" ), doc.body, doc.documentElement ], - framed = jQuery.find( "*" ); + framed = jQuery( "*" ).get(); startIframeTest( jQuery.uniqueSort( unframed.concat( framed ) ), |