diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-05-28 20:04:52 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-05-28 20:04:52 +0000 |
commit | 5917978bfd7c9f9245d643e44ae3bbb2d57322be (patch) | |
tree | 815917c8f5c2a1a6f9dd8c3946b54e8730aa81a8 | |
parent | 46cfa2f147b84e68505ee5e9a4017ade00f8bea4 (diff) | |
download | jquery-ui-5917978bfd7c9f9245d643e44ae3bbb2d57322be.tar.gz jquery-ui-5917978bfd7c9f9245d643e44ae3bbb2d57322be.zip |
accordion tests: Fixed JavaScript warnings.
-rw-r--r-- | ui/tests/accordion.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tests/accordion.js b/ui/tests/accordion.js index a2b053833..c0a42697a 100644 --- a/ui/tests/accordion.js +++ b/ui/tests/accordion.js @@ -42,10 +42,10 @@ test("activate, numeric", function() { test("activate, boolean and numeric, alwaysOpen:false", function() {
var ac = $('#list1').accordion({alwaysOpen: false}).accordion("activate", 2);
state(ac, 0, 0, 1);
- ok("x", "----")
+ ok("x", "----");
ac.accordion("activate", 0);
state(ac, 1, 0, 0);
- ok("x", "----")
+ ok("x", "----");
ac.accordion("activate", -1);
state(ac, 0, 0, 0);
});
|