summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/EnvironmentTests.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-02-18 18:32:23 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-02-18 18:32:23 (GMT)
commitb3589ce0a14ca9cc3ac67ee5d1a2d6ff92d4c6b0 (patch)
tree46f26f33320e683d2229e45c9955605d51d64507 /src/engine/SCons/EnvironmentTests.py
parent987f563b8cd16f146c2ee8b8f1617d8954aab810 (diff)
downloadSCons-b3589ce0a14ca9cc3ac67ee5d1a2d6ff92d4c6b0.zip
SCons-b3589ce0a14ca9cc3ac67ee5d1a2d6ff92d4c6b0.tar.gz
SCons-b3589ce0a14ca9cc3ac67ee5d1a2d6ff92d4c6b0.tar.bz2
Remove u' u" from strings. no longer needed
Diffstat (limited to 'src/engine/SCons/EnvironmentTests.py')
-rw-r--r--src/engine/SCons/EnvironmentTests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/engine/SCons/EnvironmentTests.py b/src/engine/SCons/EnvironmentTests.py
index 3db6499..a9ec674 100644
--- a/src/engine/SCons/EnvironmentTests.py
+++ b/src/engine/SCons/EnvironmentTests.py
@@ -262,11 +262,6 @@ class SubstitutionTestCase(unittest.TestCase):
assert isinstance(nodes[0], X)
assert nodes[0].name == "Util.py UtilTests.py", nodes[0].name
- nodes = env.arg2nodes(u"Util.py UtilTests.py", Factory)
- assert len(nodes) == 1, nodes
- assert isinstance(nodes[0], X)
- assert nodes[0].name == u"Util.py UtilTests.py", nodes[0].name
-
nodes = env.arg2nodes(["Util.py", "UtilTests.py"], Factory)
assert len(nodes) == 2, nodes
assert isinstance(nodes[0], X)