diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index dcb00abe..d1035cf6 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -427,16 +427,3 @@ test("removeAttr(String", function() { ok( $('#mark').removeAttr("class")[0].className == "", "remove class" ); }); -test("evalScripts() with no script elements", function() { - expect(2); - stop(); - $.ajax({ - url: 'data/text.php?' + new Date().getTime(), - success: function(data, status) { - ok ( true, 'before evalScripts()'); - jQuery('#foo').html(data).evalScripts(); - ok ( true, 'after evalScripts()'); - start(); - } - }); -});