diff options
author | John Resig <jeresig@gmail.com> | 2010-09-29 05:41:27 -0700 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-09-29 05:41:27 -0700 |
commit | 49f6f341814dce07b9fe2eff0052feb5ef286dfd (patch) | |
tree | 58c7e8da801ab9b9ccb01fdd5dc6dce50657e47c /test | |
parent | ab77451843e07dd57101e933b5b6c093b024d8eb (diff) | |
download | jquery-49f6f341814dce07b9fe2eff0052feb5ef286dfd.tar.gz jquery-49f6f341814dce07b9fe2eff0052feb5ef286dfd.zip |
Fix number of expected select tests from commit 879799fe955f01b85b59fd8a0096d415fc48df03. Thanks to @jitter for the catch.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/event.js b/test/unit/event.js index 3c77e3445..10751ccaa 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -255,7 +255,7 @@ test("bind(), iframes", function() { }); test("bind(), trigger change on select", function() { - expect(4); + expect(5); var counter = 0; function selectOnChange(event) { equals( event.data, counter++, "Event.data is not a global event object" ); |