diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2016-02-13 21:14:46 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2016-02-13 21:23:05 +0300 |
commit | 7dbf1c1b2b6fe524cbada15d2cd514bf3627fc26 (patch) | |
tree | 2ed239e91bf37fb7ea867b9cfe70a0013ea46e73 | |
parent | a047d4112fbbfcb1fe78bbd08736a0d3337e6fe8 (diff) | |
download | jquery-7dbf1c1b2b6fe524cbada15d2cd514bf3627fc26.tar.gz jquery-7dbf1c1b2b6fe524cbada15d2cd514bf3627fc26.zip |
Tests: use `jQuery` variable instead of `$`
For some reason that works with `amd` but not with builded version
Fixes gh-2909
-rw-r--r-- | test/unit/dimensions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js index 3bb535708..0eab21832 100644 --- a/test/unit/dimensions.js +++ b/test/unit/dimensions.js @@ -514,7 +514,7 @@ QUnit.test( "outside view position (gh-2836)", function( assert ) { ].join( "" ), stop = assert.async(); - parent = $( html ); + parent = jQuery( html ); parent.appendTo( "#qunit-fixture" ); parent.one( "scroll", function() { |