소스 검색

just whitespace

frabbit 11 년 전
부모
커밋
b865ac1338
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      tests/unit/TestPython.hx

+ 3 - 3
tests/unit/TestPython.hx

@@ -306,9 +306,9 @@ class TestPython extends Test {
 
 	function testIssue2937 () {
 		var f = Reflect.makeVarArgs(function(args:Array<Dynamic>) {
-            t(Std.is(args, Array)); // false, but should be true
-        });
-        f(1,2,3);
+			t(Std.is(args, Array)); // false, but should be true
+		});
+		f(1,2,3);
 	}
 
 }