aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRobert Katic <robert.katic@gmail.com>2010-04-13 15:11:56 +0200
committerjeresig <jeresig@gmail.com>2010-09-23 12:08:29 -0400
commit7367b524ec6c7cda0a4146e50a5dc6d7764bdef7 (patch)
tree2d00caa370714495f3ed63ad552b41492a48acef /test
parentdc4c9abc39ce7eda44ff8878d476db1e57b7bc46 (diff)
downloadjquery-7367b524ec6c7cda0a4146e50a5dc6d7764bdef7.tar.gz
jquery-7367b524ec6c7cda0a4146e50a5dc6d7764bdef7.zip
Ensure that selector is not broken.
Diffstat (limited to 'test')
-rw-r--r--test/unit/event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index 6d0fd9b57..30324978b 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -210,7 +210,7 @@ test("live/die(Object), delegate/undelegate(String, Object)", function() {
expect(6);
var clickCounter = 0, mouseoverCounter = 0,
- $p = jQuery("#firstp"), $a = $p.find("a").first();
+ $p = jQuery("#firstp"), $a = $p.find("a:first");
var events = {
click: function( event ) {