summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_indexing.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/tests/test_indexing.py')
-rw-r--r--numpy/core/tests/test_indexing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_indexing.py b/numpy/core/tests/test_indexing.py
index 26882c593..3a02c9fce 100644
--- a/numpy/core/tests/test_indexing.py
+++ b/numpy/core/tests/test_indexing.py
@@ -499,7 +499,7 @@ class TestIndexing(object):
arro = np.zeros((4, 4))
arr = arro[::-1, ::-1]
- slices = [slice(None), [0, 1, 2, 3]]
+ slices = (slice(None), [0, 1, 2, 3])
arr[slices] = 10
assert_array_equal(arr, 10.)