diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2014-04-04 22:31:38 +0400 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-04-15 17:46:26 +0400 |
commit | d89c278a3363c80d44dd4601bc0cd79c04532529 (patch) | |
tree | 6be1ca41ecf19baec66fba77d0077a8cce3be891 /test/unit/manipulation.js | |
parent | 4d5596e3e412aa19528db12905bf8c09f3bde0ed (diff) | |
download | jquery-d89c278a3363c80d44dd4601bc0cd79c04532529.tar.gz jquery-d89c278a3363c80d44dd4601bc0cd79c04532529.zip |
Tests: Fix failing ajax tests in oldIE
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r-- | test/unit/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index f403d8f8e..48d5f3987 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -2348,7 +2348,7 @@ test( "script evaluation (#11795)", function() { if ( jQuery.ajax ) { Globals.register("testBar"); - jQuery("#qunit-fixture").append( "<script src='" + url("data/test.js") + "'/>" ); + jQuery("#qunit-fixture").append( "<script src='" + url("data/testbar.php") + "'/>" ); strictEqual( window["testBar"], "bar", "Global script evaluation" ); } else { ok( true, "No jQuery.ajax" ); |