From 5381c68ec30e43830290d210362adc4297f96902 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Mon, 17 Jul 2017 10:38:35 -0600 Subject: TST: Remove unittest dependencies in matrixlib/tests. --- numpy/matrixlib/tests/test_numeric.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/matrixlib/tests/test_numeric.py') 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) -- cgit v1.2.1