(self)
| 1752 | assert_equal(setdiff1d(a, []).dtype, np.uint32) |
| 1753 | |
| 1754 | def test_setdiff1d_char_array(self): |
| 1755 | # Test setdiff1d_charray |
| 1756 | a = np.array(['a', 'b', 'c']) |
| 1757 | b = np.array(['a', 'b', 's']) |
| 1758 | assert_array_equal(setdiff1d(a, b), np.array(['c'])) |
| 1759 | |
| 1760 | |
| 1761 | class TestShapeBase: |
nothing calls this directly
no test coverage detected