aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector/selectorTest.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2007-01-03 20:48:40 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2007-01-03 20:48:40 +0000
commite0c7e6aec4cf55854217d5c0b2c7069ce84a3d12 (patch)
treeb9384416d5364468a01e098a9f10654ed6e5531f /src/selector/selectorTest.js
parent02483b4a593fb5ae9bb3925f6fe9641e31e2828e (diff)
downloadjquery-e0c7e6aec4cf55854217d5c0b2c7069ce84a3d12.tar.gz
jquery-e0c7e6aec4cf55854217d5c0b2c7069ce84a3d12.zip
Updated test for #750
Diffstat (limited to 'src/selector/selectorTest.js')
-rw-r--r--src/selector/selectorTest.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js
index 422f84a4f..aded7cd2f 100644
--- a/src/selector/selectorTest.js
+++ b/src/selector/selectorTest.js
@@ -7,8 +7,8 @@ test("expressions - element", function() {
t( "Element Selector", "body", ["body"] );
t( "Element Selector", "html", ["html"] );
t( "Parent Element", "div div", ["foo"] );
- t( "Object/Param element", "#object param", ["param1", "param2"] );
- ok( $("param", $("#object")[0]).length == 2, "Object/param as context" );
+ t( "Object/Param element", "#object1 param", ["param1", "param2"] );
+ ok( $("param", $("#object1")[0]).length == 2, "Object/param as context" );
});
test("expressions - id", function() {