summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_arraypad.py
diff options
context:
space:
mode:
authorMark Harfouche <mark.harfouche@gmail.com>2018-09-15 15:47:30 -0400
committerMark Harfouche <mark.harfouche@gmail.com>2018-09-15 15:47:30 -0400
commit8db79e027515b835f7f98e9c9ba104c80545f546 (patch)
tree82a4c821e62bddbfb478ba77306e3451fd646df9 /numpy/lib/tests/test_arraypad.py
parentcf9861b3a518edc41643dc6d80ab57336b6d5f35 (diff)
downloadnumpy-8db79e027515b835f7f98e9c9ba104c80545f546.tar.gz
style
Diffstat (limited to 'numpy/lib/tests/test_arraypad.py')
-rw-r--r--numpy/lib/tests/test_arraypad.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_arraypad.py b/numpy/lib/tests/test_arraypad.py
index 3fe064ea4..243110391 100644
--- a/numpy/lib/tests/test_arraypad.py
+++ b/numpy/lib/tests/test_arraypad.py
@@ -511,7 +511,7 @@ class TestConstant(object):
arr = np.pad(arr, pad_width=1, mode='constant',
constant_values=(obj_b, obj_c))
- expected = np.empty((3, ), dtype=object)
+ expected = np.empty((3,), dtype=object)
expected[0] = obj_b
expected[1] = obj_a
expected[2] = obj_c