(self)
| 597 | assert_equal(setdiff1d(a, []).dtype, np.uint32) |
| 598 | |
| 599 | def test_setdiff1d_unique(self): |
| 600 | a = np.array([3, 2, 1]) |
| 601 | b = np.array([7, 5, 2]) |
| 602 | expected = np.array([3, 1]) |
| 603 | actual = setdiff1d(a, b, assume_unique=True) |
| 604 | assert_equal(actual, expected) |
| 605 | |
| 606 | def test_setdiff1d_char_array(self): |
| 607 | a = np.array(['a', 'b', 'c']) |
nothing calls this directly
no test coverage detected