summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/UtilTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/UtilTests.py')
-rw-r--r--src/engine/SCons/UtilTests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/UtilTests.py b/src/engine/SCons/UtilTests.py
index 34dba99..4f3195f 100644
--- a/src/engine/SCons/UtilTests.py
+++ b/src/engine/SCons/UtilTests.py
@@ -240,10 +240,10 @@ class UtilTestCase(unittest.TestCase):
if hasattr(types, 'UnicodeType'):
exec "assert not is_List(u'')"
- def test_argmunge(self):
- assert argmunge("foo bar") == ["foo", "bar"]
- assert argmunge(["foo", "bar"]) == ["foo", "bar"]
- assert argmunge("foo") == ["foo"]
+ def test_Split(self):
+ assert Split("foo bar") == ["foo", "bar"]
+ assert Split(["foo", "bar"]) == ["foo", "bar"]
+ assert Split("foo") == ["foo"]
def test_is_String(self):
assert is_String("")