summaryrefslogtreecommitdiffstats
path: root/test/MSVC/MSVC_TOOLSET_VERSION.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/MSVC/MSVC_TOOLSET_VERSION.py')
-rw-r--r--test/MSVC/MSVC_TOOLSET_VERSION.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MSVC/MSVC_TOOLSET_VERSION.py b/test/MSVC/MSVC_TOOLSET_VERSION.py
index b016147..01d43b1 100644
--- a/test/MSVC/MSVC_TOOLSET_VERSION.py
+++ b/test/MSVC/MSVC_TOOLSET_VERSION.py
@@ -64,7 +64,7 @@ if GE_VS2017_versions:
env = Environment(MSVC_VERSION={0}, MSVC_TOOLSET_VERSION={1}, tools=['msvc'])
lib_path = env['ENV']['LIB']
if '\\\\{2}\\\\' not in lib_path:
- raise RuntimeError("{1} not found in lib_path " + lib_path)
+ raise RuntimeError("{1} not found in lib path " + lib_path)
""".format(repr(supported.msvc_version), repr(toolset_full_version), toolset_full_version)
))
test.run(arguments='-Q -s', stdout='')
@@ -76,7 +76,7 @@ if GE_VS2017_versions:
env = Environment(MSVC_VERSION={0}, MSVC_SCRIPT_ARGS='-vcvars_ver={1}', tools=['msvc'])
lib_path = env['ENV']['LIB']
if '\\\\{1}\\\\' not in lib_path:
- raise RuntimeError("'{1}' not found in lib_path " + lib_path)
+ raise RuntimeError("'{1}' not found in lib path " + lib_path)
""".format(repr(supported.msvc_version), toolset_full_version)
))
test.run(arguments='-Q -s', stdout='')