diff options
author | jaubourg <j@ubourg.net> | 2011-01-29 03:08:18 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-01-29 03:08:18 +0100 |
commit | 945ac0d0b1cdb58ade92c7d57a1f4a51b2b799a4 (patch) | |
tree | aca3ce735ba38f45ee6e6076bebbb2212d6c8505 | |
parent | 85a195c6d5ad6fccf9dd3df40ebecc338325d461 (diff) | |
download | jquery-945ac0d0b1cdb58ade92c7d57a1f4a51b2b799a4.tar.gz jquery-945ac0d0b1cdb58ade92c7d57a1f4a51b2b799a4.zip |
Simplifies the unit test for #8082.
-rw-r--r-- | test/unit/ajax.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index deef6360b..5e217214c 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -1194,15 +1194,10 @@ test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", f test("jQuery.getScript(String, Function) - with callback", function() { expect(3); stop(); - jQuery.getScript(url("data/test.js"), function( data ) { + jQuery.getScript(url("data/test.js"), function( data, _, jXHR ) { equals( foobar, "bar", 'Check if script was evaluated' ); - jQuery.ajax(url("data/test.js"), { - dataType: "text", - success: function( dataText ) { - strictEqual( data, dataText, "Same-domain script requests returns the source of the script (#8082)" ); - setTimeout(start, 100); - } - }); + strictEqual( data, jXHR.responseText, "Same-domain script requests returns the source of the script (#8082)" ); + setTimeout(start, 100); }); }); |