()
| 54 | |
| 55 | |
| 56 | def test_partition_matrix_none(): |
| 57 | # gh-4301 |
| 58 | # 2018-04-29: moved here from core.tests.test_multiarray |
| 59 | a = np.matrix([[2, 1, 0]]) |
| 60 | actual = np.partition(a, 1, axis=None) |
| 61 | expected = np.matrix([[0, 1, 2]]) |
| 62 | assert_equal(actual, expected) |
| 63 | assert_(type(expected) is np.matrix) |
| 64 | |
| 65 | |
| 66 | def test_dot_scalar_and_matrix_of_objects(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…