From: jeresig <jeresig@gmail.com>
Date: Fri, 18 Dec 2009 17:43:35 +0000 (-0500)
Subject: Fixed the spacing from the last commit.
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=c05712f0a51a137c9243cbc33b4cb0d5d853a80d;p=jquery.git

Fixed the spacing from the last commit.
---

diff --git a/test/unit/core.js b/test/unit/core.js
index 1888e55..e3adc60 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -64,20 +64,20 @@ test("jQuery()", function() {
 	equals( jQuery(document.body).get(0), jQuery('body').get(0), "Test passing an html node to the factory" );
 
 	var elem = jQuery("<div/>", {
-                width: 10,
-                css: { paddingLeft:1, paddingRight:1 },
+		width: 10,
+		css: { paddingLeft:1, paddingRight:1 },
 		text: "test",
 		"class": "test2",
 		id: "test3"
-        });
-
-        equals( elem[0].style.width, '10px', 'jQuery() quick setter width');
-        equals( elem[0].style.paddingLeft, '1px', 'jQuery quick setter css');
-        equals( elem[0].style.paddingRight, '1px', 'jQuery quick setter css');
-        equals( elem[0].childNodes.length, 1, 'jQuery quick setter text');
-        equals( elem[0].firstChild.nodeValue, "test", 'jQuery quick setter text');
-        equals( elem[0].className, "test2", 'jQuery() quick setter class');
-        equals( elem[0].id, "test3", 'jQuery() quick setter id');
+	});
+
+	equals( elem[0].style.width, '10px', 'jQuery() quick setter width');
+	equals( elem[0].style.paddingLeft, '1px', 'jQuery quick setter css');
+	equals( elem[0].style.paddingRight, '1px', 'jQuery quick setter css');
+	equals( elem[0].childNodes.length, 1, 'jQuery quick setter text');
+	equals( elem[0].firstChild.nodeValue, "test", 'jQuery quick setter text');
+	equals( elem[0].className, "test2", 'jQuery() quick setter class');
+	equals( elem[0].id, "test3", 'jQuery() quick setter id');
 });
 
 test("selector state", function() {