summaryrefslogtreecommitdiffstats
path: root/test/Progress/TARGET.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Progress/TARGET.py')
-rw-r--r--test/Progress/TARGET.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Progress/TARGET.py b/test/Progress/TARGET.py
index 9af5565..b2693e7 100644
--- a/test/Progress/TARGET.py
+++ b/test/Progress/TARGET.py
@@ -50,16 +50,18 @@ test.write('S2.in', "S2.in\n")
test.write('S3.in', "S3.in\n")
test.write('S4.in', "S4.in\n")
-expect = bytearray("""\
+expect = """\
S1.in\r \rS1.out\rCopy("S1.out", "S1.in")
\rS2.in\r \rS2.out\rCopy("S2.out", "S2.in")
\rS3.in\r \rS3.out\rCopy("S3.out", "S3.in")
\rS4.in\r \rS4.out\rCopy("S4.out", "S4.in")
- \rSConstruct\r \r.\r""",'utf-8')
+ \rSConstruct\r \r.\r"""
if os.linesep != '\n':
expect = expect.replace('\n', os.linesep)
+expect = bytearray(expect, 'utf-8')
+
test.run(arguments = '-Q .', stdout=expect)
test.pass_test()