diff options
Diffstat (limited to 'test/TargetSignatures.py')
-rw-r--r-- | test/TargetSignatures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TargetSignatures.py b/test/TargetSignatures.py index 5060157..2ee016e 100644 --- a/test/TargetSignatures.py +++ b/test/TargetSignatures.py @@ -71,7 +71,7 @@ def copy1(env, source, target): open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) def copy2(env, source, target): - # added this line + x = 2 # added this line return copy1(env, source, target) env['BUILDERS']['Copy1'] = Builder(action=copy1) @@ -103,7 +103,7 @@ def copy1(env, source, target): open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) def copy2(env, source, target): - # added this line + x = 2 # added this line return copy1(env, source, target) env['BUILDERS']['Copy1'] = Builder(action=copy1) |