From: John Resig Date: Mon, 5 Jan 2009 21:04:15 +0000 (+0000) Subject: Simplified the XML selector test (save the result). X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=c6de039bb1568d8e6162b8152b8208eff1af282d;p=jquery.git Simplified the XML selector test (save the result). --- diff --git a/test/unit/core.js b/test/unit/core.js index 07011e8..f49b676 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -291,9 +291,10 @@ test("jQuery(selector, xml).text(str) - Loaded via XML document", function() { stop(); jQuery.get('data/dashboard.xml', function(xml) { // tests for #1419 where IE was a problem - equals( jQuery("tab:first", xml).text(), "blabla", "Verify initial text correct" ); - jQuery("tab:first", xml).text("newtext"); - equals( jQuery("tab:first", xml).text(), "newtext", "Verify new text correct" ); + var tab = jQuery("tab", xml).eq(0); + equals( tab.text(), "blabla", "Verify initial text correct" ); + tab.text("newtext"); + equals( tab.text(), "newtext", "Verify new text correct" ); start(); }); });