diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-01-31 10:53:46 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-01-31 10:53:46 +0000 |
commit | 8343ed35bde1628ec04fd09b0ab23587da89caf5 (patch) | |
tree | 5e77febdbf8434b1186c73e873e9766ade6ebc4a /numpy/testing/numpytest.py | |
parent | a6eeae554437155dfe1fd79c4f431618d9a000a9 (diff) | |
download | numpy-8343ed35bde1628ec04fd09b0ab23587da89caf5.tar.gz |
Fixed a misplaced test messages by flushing.
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index 1b834bb2a..74e2e7305 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -151,6 +151,7 @@ class NumpyTestCase (unittest.TestCase): result.stream.data[-1] = 'ignoring\n' del result.errors[-1] map(save_stream.write, result.stream.data) + save_stream.flush() result.stream = save_stream ScipyTestCase = NumpyTestCase |