summaryrefslogtreecommitdiff
path: root/numpy/tests/test_matlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/tests/test_matlib.py')
-rw-r--r--numpy/tests/test_matlib.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/tests/test_matlib.py b/numpy/tests/test_matlib.py
index d16975934..12116b883 100644
--- a/numpy/tests/test_matlib.py
+++ b/numpy/tests/test_matlib.py
@@ -2,7 +2,7 @@ from __future__ import division, absolute_import, print_function
import numpy as np
import numpy.matlib
-from numpy.testing import assert_array_equal, assert_, run_module_suite
+from numpy.testing import assert_array_equal, assert_
def test_empty():
x = numpy.matlib.empty((2,))
@@ -58,7 +58,3 @@ def test_repmat():
y = np.array([[0, 1, 2, 3, 0, 1, 2, 3],
[0, 1, 2, 3, 0, 1, 2, 3]])
assert_array_equal(x, y)
-
-
-if __name__ == "__main__":
- run_module_suite()