diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-05-11 10:31:39 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-11 10:31:39 -0600 |
commit | 33ce0baeae071cfbe32cb0f7680a4ec9dd7f379e (patch) | |
tree | d268c66320c83edf2af3d81a42a78d1368d739ff | |
parent | 8ea619a8717d2c82d42e4662b2266121faba58e4 (diff) | |
parent | 1a3d04754e46e9d38f8fe0b10139907799fda918 (diff) | |
download | numpy-33ce0baeae071cfbe32cb0f7680a4ec9dd7f379e.tar.gz |
Merge pull request #9099 from charris/forwardport-9097
TST: fix test_basic failure on Windows
-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, '') |