(self)
| 1689 | assert_equal(setdiff1d(a, []).dtype, np.uint32) |
| 1690 | |
| 1691 | def test_setdiff1d_char_array(self): |
| 1692 | # Test setdiff1d_charray |
| 1693 | a = np.array(['a', 'b', 'c']) |
| 1694 | b = np.array(['a', 'b', 's']) |
| 1695 | assert_array_equal(setdiff1d(a, b), np.array(['c'])) |
| 1696 | |
| 1697 | |
| 1698 | class TestShapeBase: |
nothing calls this directly
no test coverage detected