summaryrefslogtreecommitdiff
path: root/test/CPPDEFINES/fixture/SConstruct-Prepend
diff options
context:
space:
mode:
Diffstat (limited to 'test/CPPDEFINES/fixture/SConstruct-Prepend')
-rw-r--r--test/CPPDEFINES/fixture/SConstruct-Prepend4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CPPDEFINES/fixture/SConstruct-Prepend b/test/CPPDEFINES/fixture/SConstruct-Prepend
index 59345308d..52b66e8c2 100644
--- a/test/CPPDEFINES/fixture/SConstruct-Prepend
+++ b/test/CPPDEFINES/fixture/SConstruct-Prepend
@@ -91,10 +91,10 @@ for (t1, c1) in cases:
env = Environment(CPPDEFINES=c1, CPPDEFPREFIX='-D')
env.Prepend(CPPDEFINES=c2)
final = env.subst('$_CPPDEFFLAGS', source="src", target="tgt")
- print(f"Prepend:\n\tresult={dlist(env['CPPDEFINES'])}\n\tfinal={final}")
+ print(f"Prepend:\n result={dlist(env['CPPDEFINES'])}\n final={final}")
env = Environment(CPPDEFINES=c1, CPPDEFPREFIX='-D')
env.PrependUnique(CPPDEFINES=c2)
final = env.subst('$_CPPDEFFLAGS', source="src", target="tgt")
print(
- f"PrependUnique:\n\tresult={dlist(env['CPPDEFINES'])}\n\tfinal={final}"
+ f"PrependUnique:\n result={dlist(env['CPPDEFINES'])}\n final={final}"
)