X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=a648e33d67b531a84d1797876718229ab5c2ca92;hb=d45f19394866c3006b5cca733d31417395b703e6;hp=07671c6bee49c13b45a5dd34d02d54bed43ab098;hpb=7d9d2105406fe7fcdc196df860ca155c3e4c8453;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 07671c6..a648e33 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -28,8 +28,8 @@ if ( location.protocol != "file:" ) { equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" ); equals( jQuery("property[name=prop2]", xml).length, 1, "Attribute selector with name" ); equals( jQuery("[name=prop2]", xml).length, 1, "Attribute selector with name" ); - equals( jQuery("#seite1", xml).length, 1, "Attribute selector with name" ); - equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with name" ); + equals( jQuery("#seite1", xml).length, 1, "Attribute selector with ID" ); + equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with ID" ); start(); }); });