diff options
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index 315f9ac21..c31c298bc 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -435,8 +435,8 @@ class test_putmask(ParametricTestCase): tests = [] for val in [-100,0,15]: for types in N.sctypes.itervalues(): - tests.extend((self.tst_basic,x.copy().astype(T),T,mask,val) - for T in types if T not in unchecked_types) + tests.extend([(self.tst_basic,x.copy().astype(T),T,mask,val) + for T in types if T not in unchecked_types]) return tests def test_mask_size(self): |