]> source.dussan.org Git - jquery-ui.git/commitdiff
draggable unit tests: typo in 'addClasses: false' test
authorRichard Worth <rdworth@gmail.com>
Mon, 2 Feb 2009 07:12:37 +0000 (07:12 +0000)
committerRichard Worth <rdworth@gmail.com>
Mon, 2 Feb 2009 07:12:37 +0000 (07:12 +0000)
tests/unit/draggable/draggable_core.js
tests/unit/draggable/draggable_options.js

index ab3b36c4e3b99fd5fe065104072683db75b8607e..a01de408fc2b8277a074cc4a3931e00d4447fbad 100644 (file)
@@ -1,11 +1,7 @@
 /*
- * draggable unit tests
+ * draggable_core.js
  */
 
-//
-// Draggable Test Helper Functions
-//
-
 var el, offsetBefore, offsetAfter, dragged;
 
 var drag = function(handle, dx, dy) {
index 7039b3c56d58b3aab155a04268b8bd8f98e2524a..5703c90d4822ba1a08c3711035103702a7b4cfaf 100644 (file)
@@ -32,7 +32,7 @@ test("{ addClasses: true }, default", function() {
 
 test("{ addClasses: false }", function() {
        el = $("<div></div>").draggable({ addClasses: false });
-       ok(!el.is(".ui.draggable"), "'ui-draggable' class not added");
+       ok(!el.is(".ui-draggable"), "'ui-draggable' class not added");
 });
 
 test("{ appendTo: 'parent' }, default", function() {