diff options
Diffstat (limited to 'numpy/distutils/tests/test_exec_command.py')
-rw-r--r-- | numpy/distutils/tests/test_exec_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/tests/test_exec_command.py b/numpy/distutils/tests/test_exec_command.py index eccc47124..d5a0c5ae0 100644 --- a/numpy/distutils/tests/test_exec_command.py +++ b/numpy/distutils/tests/test_exec_command.py @@ -99,7 +99,7 @@ class TestExecCommand(TestCase): self.pyexe = get_pythonexe() def check_nt(self, **kws): - s, o = exec_command.exec_command('echo path=%path%') + s, o = exec_command.exec_command('cmd /C echo path=%path%') self.assertEqual(s, 0) self.assertNotEqual(o, '') |