(self)
| 614 | assert_equal(actual, expected) |
| 615 | |
| 616 | def test_setdiff1d_char_array(self): |
| 617 | a = np.array(['a', 'b', 'c']) |
| 618 | b = np.array(['a', 'b', 's']) |
| 619 | assert_array_equal(setdiff1d(a, b), np.array(['c'])) |
| 620 | |
| 621 | def test_manyways(self): |
| 622 | a = np.array([5, 7, 1, 2, 8]) |
nothing calls this directly
no test coverage detected