From e0c7e6aec4cf55854217d5c0b2c7069ce84a3d12 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Wed, 3 Jan 2007 20:48:40 +0000 Subject: [PATCH] Updated test for #750 --- build/test/index.html | 5 +++++ src/selector/selectorTest.js | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/build/test/index.html b/build/test/index.html index 8037c39..081fb11 100644 --- a/build/test/index.html +++ b/build/test/index.html @@ -72,6 +72,11 @@ + + + + + Float test. diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 422f84a..aded7cd 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() { -- 1.7.10.4