From d48b756b232c99b6624d76db3188090052e0db60 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Sun, 5 Feb 2012 15:57:00 +0100 Subject: STY: meshgrid: some minor changes to address review comments. --- numpy/lib/tests/test_function_base.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'numpy/lib/tests/test_function_base.py') diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index 57bfee61b..b38b39c94 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -1052,10 +1052,7 @@ class TestMeshgrid(TestCase): def test_sparse(self): [X, Y] = meshgrid([1, 2, 3], [4, 5, 6, 7], sparse=True) assert_(all(X == array([[1, 2, 3]]))) - assert_(all(Y == array([[4], - [5], - [6], - [7]]))) + assert_(all(Y == array([[4], [5], [6], [7]]))) class TestPiecewise(TestCase): -- cgit v1.2.1