Remove a few stray spaces in unit tests.

This commit is contained in:
Dave Methvin 2012-07-10 21:44:03 -04:00
parent 662380014f
commit 335bdf2b1a
2 changed files with 3 additions and 3 deletions

View 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) {

View 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() {