diff options
author | Christoph Gohlke <cjgohlke@gmail.com> | 2017-05-10 19:16:04 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-05-11 09:56:31 -0600 |
commit | 1a3d04754e46e9d38f8fe0b10139907799fda918 (patch) | |
tree | 0034885d977c0eefc148a53bd71e1c5b292aeb5d /numpy/distutils/tests/test_exec_command.py | |
parent | 81728dc0bd862b8cd0b2dfec05afdea9dca419a5 (diff) | |
download | numpy-1a3d04754e46e9d38f8fe0b10139907799fda918.tar.gz |
TST: fix test_basic failure on Windows
Echo is a command in the Windows command interpreter
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, '') |