diff options
| -rw-r--r-- | numpy/core/tests/test_numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_numeric.py b/numpy/core/tests/test_numeric.py index bf3ca5d30..4e2fa9b82 100644 --- a/numpy/core/tests/test_numeric.py +++ b/numpy/core/tests/test_numeric.py @@ -1353,7 +1353,7 @@ class TestCreationFuncs(TestCase): continue else: # do not fill void type - if fill_value is not None and type == 'V': + if fill_value is not None and type in 'VSUa': continue arr = func(shape, order=order, dtype=dtype, |
