From f368f01a8239305b6829069f29377a458f28e393 Mon Sep 17 00:00:00 2001 From: John Bender Date: Mon, 10 Oct 2011 14:08:40 -0700 Subject: [PATCH] correct selector in test --- tests/unit/checkboxradio/checkboxradio_core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/checkboxradio/checkboxradio_core.js b/tests/unit/checkboxradio/checkboxradio_core.js index 8a9c0c91..36005bbd 100644 --- a/tests/unit/checkboxradio/checkboxradio_core.js +++ b/tests/unit/checkboxradio/checkboxradio_core.js @@ -119,6 +119,6 @@ // not testing the positive case here since's it's obviously tested elsewhere test( "checkboxradio elements in the keepNative set shouldn't be enhanced", function() { - ok( !$("#input.should-be-native").parent().is("div.ui-checkbox") ); + ok( !$("input.should-be-native").parent().is("div.ui-checkbox") ); }); })(jQuery);