(self)
| 28 | assert_array_equal(res, desired) |
| 29 | |
| 30 | def test_2D_array(self): |
| 31 | a = array([[1, 2], [1, 2]]) |
| 32 | b = array([[2, 3], [2, 3]]) |
| 33 | res = [atleast_1d(a), atleast_1d(b)] |
| 34 | desired = [a, b] |
| 35 | assert_array_equal(res, desired) |
| 36 | |
| 37 | def test_3D_array(self): |
| 38 | a = array([[1, 2], [1, 2]]) |
nothing calls this directly
no test coverage detected