summaryrefslogtreecommitdiffstats
path: root/test/Copy.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Copy.py')
-rw-r--r--test/Copy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Copy.py b/test/Copy.py
index 6659d93..827b912 100644
--- a/test/Copy.py
+++ b/test/Copy.py
@@ -36,8 +36,8 @@ test = TestSCons.TestSCons()
test.write('SConstruct', """
Execute(Copy('f1.out', 'f1.in'))
-Execute(Copy('d2.out', 'd2.in'))
-Execute(Copy('d3.out', 'f3.in'))
+Execute(Copy(File('d2.out'), 'd2.in'))
+Execute(Copy('d3.out', File('f3.in')))
def cat(env, source, target):
target = str(target[0])
source = map(str, source)