summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-12-08 21:45:32 (GMT)
committerMats Wichmann <mats@linux.com>2020-12-08 21:45:32 (GMT)
commit321d48ae6699919858bee412634489ff2d2f78cd (patch)
treeddd836a0115a869397ee88db89dda6a54f8ac6e5
parent21cabcad728cd004166266db4f8fda6627e82b43 (diff)
downloadSCons-321d48ae6699919858bee412634489ff2d2f78cd.zip
SCons-321d48ae6699919858bee412634489ff2d2f78cd.tar.gz
SCons-321d48ae6699919858bee412634489ff2d2f78cd.tar.bz2
Fix broken mod to (unused) test
An edit to the use-dbhash.py test file missed a bit. Might as well fix, although the test is always skipped since the Python dbm module it tests does not exist in any current Python version. Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r--test/SConsignFile/use-dbhash.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SConsignFile/use-dbhash.py b/test/SConsignFile/use-dbhash.py
index 0e8e40c..2968cd7 100644
--- a/test/SConsignFile/use-dbhash.py
+++ b/test/SConsignFile/use-dbhash.py
@@ -50,7 +50,7 @@ sys.exit(0)
#
test.write('SConstruct', """
-import %(use_dbm
+import %(use_dbm)s
SConsignFile('.sconsign', %(use_dbm)s)
DefaultEnvironment(tools=[])
B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES')