From 58cf052fdf8538ac57166cc51bae544565a8705b Mon Sep 17 00:00:00 2001 From: Przemyslaw Tredak Date: Wed, 16 Jan 2019 21:35:55 -0800 Subject: [PATCH] Fix for test always returning true (#13911) --- tests/python/unittest/test_random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/unittest/test_random.py b/tests/python/unittest/test_random.py index 405602f073bb..e5f0a4559627 100644 --- a/tests/python/unittest/test_random.py +++ b/tests/python/unittest/test_random.py @@ -882,7 +882,7 @@ def test_randint_generator(): @with_seed() def test_randint_without_dtype(): a = mx.nd.random.randint(low=50000000, high=50000010, ctx=mx.context.current_context()) - assert(a.dtype, 'int32') + assert a.dtype == np.int32 if __name__ == '__main__': import nose