summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel <dmoody256@gmail.com>2019-01-12 03:29:35 -0600
committerDaniel <dmoody256@gmail.com>2019-01-12 03:32:42 -0600
commit580b28e01b8472a9f0ede7bdf1559181a79297fa (patch)
treea2e2db6cd318ad8fcac16d48e08f2a15f7a3398c /test
parentf8b78579a50f6caddc8e5bb96d704f462822a8d1 (diff)
downloadscons-git-580b28e01b8472a9f0ede7bdf1559181a79297fa.tar.gz
removed unused imports and other sider changes
fixed syntax issue
Diffstat (limited to 'test')
-rw-r--r--test/MSVC/TARGET_ARCH.py2
-rw-r--r--test/MSVS/vs-14.1-exec.py2
-rw-r--r--test/MSVS/vs-14.1-scc-files.py2
-rw-r--r--test/MSVS/vs-14.1-scc-legacy-files.py2
4 files changed, 1 insertions, 7 deletions
diff --git a/test/MSVC/TARGET_ARCH.py b/test/MSVC/TARGET_ARCH.py
index 9d5c008f1..a960bd8d6 100644
--- a/test/MSVC/TARGET_ARCH.py
+++ b/test/MSVC/TARGET_ARCH.py
@@ -29,8 +29,6 @@ Test the ability to configure the $TARGET_ARCH construction variable.
"""
import TestSCons
-import SCons.Tool.MSCommon.vc as msvc
-from SCons.Tool.MSCommon.vc import get_msvc_version_numeric
_python_ = TestSCons._python_
diff --git a/test/MSVS/vs-14.1-exec.py b/test/MSVS/vs-14.1-exec.py
index d7b4d105f..2f593e0f6 100644
--- a/test/MSVS/vs-14.1-exec.py
+++ b/test/MSVS/vs-14.1-exec.py
@@ -43,7 +43,7 @@ if sys.platform != 'win32':
msvs_version = '14.1'
-if not msvs_version in test.msvs_versions():
+if msvs_version not in test.msvs_versions():
msg = "Visual Studio %s not installed; skipping test.\n" % msvs_version
test.skip_test(msg)
diff --git a/test/MSVS/vs-14.1-scc-files.py b/test/MSVS/vs-14.1-scc-files.py
index 6fa12f8e8..74e055e1b 100644
--- a/test/MSVS/vs-14.1-scc-files.py
+++ b/test/MSVS/vs-14.1-scc-files.py
@@ -29,8 +29,6 @@ Test that we can generate Visual Studio 14.1 project (.vcxproj) and
solution (.sln) files that contain SCC information and look correct.
"""
-import os
-
import TestSConsMSVS
test = TestSConsMSVS.TestSConsMSVS()
diff --git a/test/MSVS/vs-14.1-scc-legacy-files.py b/test/MSVS/vs-14.1-scc-legacy-files.py
index 96e70a9ca..0444b165a 100644
--- a/test/MSVS/vs-14.1-scc-legacy-files.py
+++ b/test/MSVS/vs-14.1-scc-legacy-files.py
@@ -29,8 +29,6 @@ Test that we can generate Visual Studio 14.1 project (.vcxproj) and
solution (.sln) files that contain SCC information and look correct.
"""
-import os
-
import TestSConsMSVS
test = TestSConsMSVS.TestSConsMSVS()