From 7823f5e58f4c94d89aa4f232013d4b50163d350e Mon Sep 17 00:00:00 2001 From: reminisce Date: Mon, 12 Aug 2019 21:21:34 -0700 Subject: [PATCH] clean up --- tests/python/unittest/test_numpy_op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/unittest/test_numpy_op.py b/tests/python/unittest/test_numpy_op.py index db99846ecc1e..9d130e701491 100644 --- a/tests/python/unittest/test_numpy_op.py +++ b/tests/python/unittest/test_numpy_op.py @@ -310,7 +310,7 @@ def test_np_linspace(): # check linspace equivalent to arange for test_index in range(1000): assert_almost_equal(mx.np.linspace(0, test_index, test_index + 1).asnumpy(), _np.arange(test_index + 1)) - @use_np + class TestLinspace(HybridBlock): def __init__(self, start, stop, num=50, endpoint=None, retstep=False, dtype=None, axis=0): super(TestLinspace, self).__init__()