Browse Source

minor, whitespace cleanup

frabbit 10 years ago
parent
commit
2cc82371c6
1 changed files with 4 additions and 5 deletions
  1. 4 5
      tests/unit/src/unit/TestPython.hx

+ 4 - 5
tests/unit/src/unit/TestPython.hx

@@ -425,9 +425,8 @@ class TestPython extends Test {
 
 	function testVectorEquality()
 	{
-        var v = new haxe.ds.Vector(1);
-        var v2 = v.copy();
-        eq(v == v2, false);
-    }
-
+		var v = new haxe.ds.Vector(1);
+		var v2 = v.copy();
+		eq(v == v2, false);
+	}
 }