Browse Source

[hl] actually that should be print, not println

Simon Krajewski 9 years ago
parent
commit
90b2513975
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/haxe/unit/TestRunner.hx

+ 1 - 1
std/haxe/unit/TestRunner.hx

@@ -70,7 +70,7 @@ class TestRunner {
 		#elseif python
 			python.Lib.print(v);
 		#elseif hl
-			Sys.println(Std.string(v));
+			Sys.print(Std.string(v));
 		#end
 	}