]> source.dussan.org Git - jquery.git/commitdiff
Remove a few stray spaces in unit tests.
authorDave Methvin <dave.methvin@gmail.com>
Wed, 11 Jul 2012 01:44:03 +0000 (21:44 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Wed, 11 Jul 2012 01:44:03 +0000 (21:44 -0400)
test/unit/manipulation.js
test/unit/offset.js

index 5d794b9bcafdcb49fb2491fc5745487cc7d0e2fb..31426e73986694eba1aa67f5544f47cc2ffe005b 100644 (file)
@@ -1360,7 +1360,7 @@ test("html(undefined)", function() {
 
 test("html() on empty set", function() {
        expect(1);
-       strictEqual( jQuery( ).html(), undefined, ".html() returns undefined for empty sets (#11962)" );
+       strictEqual( jQuery().html(), undefined, ".html() returns undefined for empty sets (#11962)" );
 });
 
 var testHtml = function(valueObj) {
index 348c1bd17c62e8a35f4e06ade8bff81e358f55b9..6d00e8dac940e837a0ea655cadbf2a7148e8c33e 100644 (file)
@@ -11,8 +11,8 @@ module("offset", { teardown: moduleTeardown });
 
 test("empty set", function() {
        expect(2);
-       strictEqual( jQuery( ).offset(), undefined, "offset() returns undefined for empty set (#11962)" );
-       strictEqual( jQuery( ).position(), undefined, "position() returns undefined for empty set (#11962)" );
+       strictEqual( jQuery().offset(), undefined, "offset() returns undefined for empty set (#11962)" );
+       strictEqual( jQuery().position(), undefined, "position() returns undefined for empty set (#11962)" );
 });
 
 test("disconnected node", function() {