diff --git a/Tests/Manual/CompilationTests/TestCases/7.j b/Tests/Manual/CompilationTests/TestCases/7.j index cdff5aeda..a2202e387 100644 --- a/Tests/Manual/CompilationTests/TestCases/7.j +++ b/Tests/Manual/CompilationTests/TestCases/7.j @@ -7,7 +7,7 @@ Error on line 10001 of file [unknown] SyntaxError: @implementation MyType : CPObject ^ -ERROR line 5 in file:[__PATH__]: MyType is already declared as type +ERROR line 5 in file:[__PATH__]: MyType is already declared as a type END_EXPECTED */ diff --git a/Tests/Manual/CompilationTests/run.py b/Tests/Manual/CompilationTests/run.py index e21eebaa3..b827faa8b 100755 --- a/Tests/Manual/CompilationTests/run.py +++ b/Tests/Manual/CompilationTests/run.py @@ -55,6 +55,7 @@ def cleanup_output(output): output = output.replace(" ", "") output = output.replace("\n", "") output = output.replace("[0m", "") + output = re.sub('\d*offile\[unknown\]', '', output) return re.sub('[^\s!-~]', '', output)