aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-10-21 19:02:22 +0200
committerGitHub <noreply@github.com>2019-10-21 19:02:22 +0200
commit1d624c10b4a6b97ac254bcefffa91058556075d2 (patch)
tree996b1299b56dab10c2691838b9f46d32bc7de917 /test/data
parent26415e081b318dbe1d46d2b7c30e05f14c339b75 (diff)
downloadjquery-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.html2
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 ) ),