summaryrefslogtreecommitdiff
path: root/numpy/matrixlib/tests/test_numeric.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-07-24 15:17:42 -0500
committerGitHub <noreply@github.com>2017-07-24 15:17:42 -0500
commitf84274100090d52366e5218696b1b8d3a8c73a44 (patch)
tree69c8bbf64ad43704d685ccfc591e972e25557fe2 /numpy/matrixlib/tests/test_numeric.py
parent6958be1c9180bd52a7aaf979718b2b851f280055 (diff)
parent69bc7b19d2a665c8301c3df07aee61fc469ff4e3 (diff)
downloadnumpy-f84274100090d52366e5218696b1b8d3a8c73a44.tar.gz
Merge pull request #9434 from charris/remove-unittest-dependencies
Remove unittest dependencies
Diffstat (limited to 'numpy/matrixlib/tests/test_numeric.py')
-rw-r--r--numpy/matrixlib/tests/test_numeric.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/matrixlib/tests/test_numeric.py b/numpy/matrixlib/tests/test_numeric.py
index 28329da39..b826b8e81 100644
--- a/numpy/matrixlib/tests/test_numeric.py
+++ b/numpy/matrixlib/tests/test_numeric.py
@@ -1,9 +1,9 @@
from __future__ import division, absolute_import, print_function
import numpy as np
-from numpy.testing import assert_equal, TestCase, run_module_suite
+from numpy.testing import assert_equal, run_module_suite
-class TestDot(TestCase):
+class TestDot(object):
def test_matscalar(self):
b1 = np.matrix(np.ones((3, 3), dtype=complex))
assert_equal(b1*1.0, b1)