diff options
Diffstat (limited to 'test/Copy.py')
-rw-r--r-- | test/Copy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Copy.py b/test/Copy.py index 00642da..b318e58 100644 --- a/test/Copy.py +++ b/test/Copy.py @@ -77,13 +77,13 @@ Copy("d2.out", "d2.in") Copy("d3.out", "f3.in") """, build_str = """\ -cat("bar.out", "bar.in") +cat(["bar.out"], ["bar.in"]) Copy("f4.out", "f4.in") Copy("d5.out", "d5.in") Copy("d6.out", "f6.in") Copy("f7.out", "f7.in") -cat("f8.out", "f8.in") -cat("f9.out", "f9.in") +cat(["f8.out"], ["f8.in"]) +cat(["f9.out"], ["f9.in"]) Copy("f9.out-Copy", "f9.in") """) test.run(options = '-n', arguments = '.', stdout = expect) |