Browse Source

[test] enable sys.io.Process test for python

Andy Li 10 years ago
parent
commit
31e427e8e4
1 changed files with 1 additions and 3 deletions
  1. 1 3
      tests/sys/src/io/TestProcess.hx

+ 1 - 3
tests/sys/src/io/TestProcess.hx

@@ -3,7 +3,7 @@ package io;
 import sys.io.Process;
 
 class TestProcess extends haxe.unit.TestCase {
-	#if !(python || php)
+	#if !php
 	function testArguments() {
 		var bin = sys.FileSystem.absolutePath(TestArguments.bin);
 		var args = TestArguments.expectedArgs;
@@ -38,7 +38,6 @@ class TestProcess extends haxe.unit.TestCase {
 	}
 	#end
 
-	#if !python
 	function testExitCode() {
 		var bin = sys.FileSystem.absolutePath(ExitCode.bin);
 
@@ -80,5 +79,4 @@ class TestProcess extends haxe.unit.TestCase {
 			assertEquals(code, process.exitCode());
 		}
 	}
-	#end
 }