summaryrefslogtreecommitdiffstats
path: root/test/Batch
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-05-24 19:31:58 (GMT)
committerMats Wichmann <mats@linux.com>2020-05-24 19:31:58 (GMT)
commit56020df5c9caef184a7a9c1cf4a60cef6a4bfbb3 (patch)
treeb66bfa22cd8ddf25dfd5331b83f355c34fef4a43 /test/Batch
parent5b288f1b67a85bcccc533f101311b1c2c7f2b6eb (diff)
downloadSCons-56020df5c9caef184a7a9c1cf4a60cef6a4bfbb3.zip
SCons-56020df5c9caef184a7a9c1cf4a60cef6a4bfbb3.tar.gz
SCons-56020df5c9caef184a7a9c1cf4a60cef6a4bfbb3.tar.bz2
Fix bug in test for PR #3668
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Batch')
-rw-r--r--test/Batch/SConstruct_changed_sources_alwaysBuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Batch/SConstruct_changed_sources_alwaysBuild b/test/Batch/SConstruct_changed_sources_alwaysBuild
index d7acb3b..dea7908 100644
--- a/test/Batch/SConstruct_changed_sources_alwaysBuild
+++ b/test/Batch/SConstruct_changed_sources_alwaysBuild
@@ -3,6 +3,6 @@
obj = Object('changed_sources_main.cpp')
AlwaysBuild(obj)
-program = Program('test', source = [object])
+program = Program('test', source=[obj])
Default(program)