(self)
| 604 | assert_equal(actual, expected) |
| 605 | |
| 606 | def test_setdiff1d_char_array(self): |
| 607 | a = np.array(['a', 'b', 'c']) |
| 608 | b = np.array(['a', 'b', 's']) |
| 609 | assert_array_equal(setdiff1d(a, b), np.array(['c'])) |
| 610 | |
| 611 | def test_manyways(self): |
| 612 | a = np.array([5, 7, 1, 2, 8]) |
nothing calls this directly
no test coverage detected