Browse Source

reduce whitespace

frabbit 11 years ago
parent
commit
94ac87437a
1 changed files with 0 additions and 6 deletions
  1. 0 6
      tests/unit/TestPython.hx

+ 0 - 6
tests/unit/TestPython.hx

@@ -280,8 +280,6 @@ class TestPython extends Test {
 		var x = [1,2];
 		test(x);
 
-
-
 		function test (?va:VarArgs, ?kw:KwArgs) {
 			var a = va.toArray();
 			eq(0,a.length);
@@ -294,8 +292,6 @@ class TestPython extends Test {
 	}
 
 	function testKwArgs () {
-
-
 		function x (args:KwArgs) {
 			var a = args.get("a", 0);
 			var b = args.get("b", 0);
@@ -390,8 +386,6 @@ class TestPython extends Test {
 		eq(t.length, 2);
 	}
 
-
-
 	function testExtern()
 	{
 		eq(new ExternClass().f(1), 2);