aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2012-06-21 15:30:24 -0400
committerRick Waldron <waldron.rick@gmail.com>2012-06-21 15:30:24 -0400
commit7ff3da186cf9bb5ea23f5a0b9543302ef0f861f7 (patch)
tree41ebf66ab6fd5fdd4eaef11f022c6c95727d57f4 /test/unit/selector.js
parent66501469c0c21107837375538a13273e32fdc7cf (diff)
downloadjquery-7ff3da186cf9bb5ea23f5a0b9543302ef0f861f7.tar.gz
jquery-7ff3da186cf9bb5ea23f5a0b9543302ef0f861f7.zip
Unit tests are linted and passing.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r--test/unit/selector.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 5bea3215e..7cc58e586 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -12,8 +12,8 @@ test("element - jQuery only", function() {
deepEqual( jQuery("p", jQuery("div")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
deepEqual( jQuery("div").find("p").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
- ok( jQuery("#length").length, "\<input name=\"length\"\> cannot be found under IE, see #945" );
- ok( jQuery("#lengthtest input").length, "\<input name=\"length\"\> cannot be found under IE, see #945" );
+ ok( jQuery("#length").length, "<input name=\"length\"> cannot be found under IE, see #945" );
+ ok( jQuery("#lengthtest input").length, "<input name=\"length\"> cannot be found under IE, see #945" );
//#7533
equal( jQuery("<div id=\"A'B~C.D[E]\"><p>foo</p></div>").find("p").length, 1, "Find where context root is a node and has an ID with CSS3 meta characters" );