summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_arraysetops.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-18 18:06:53 -0700
committerGitHub <noreply@github.com>2018-01-18 18:06:53 -0700
commit9a20329eabc9c4b8a10c1c7163de40334abde479 (patch)
tree48838f3ab259449a97dcd952661e2394e8989655 /numpy/lib/tests/test_arraysetops.py
parenta1dfb54a8f02981d07d26037c2c93b1e2590c8a8 (diff)
downloadnumpy-9a20329eabc9c4b8a10c1c7163de40334abde479.tar.gz
STY: Break some long lines.
[ci skip]
Diffstat (limited to 'numpy/lib/tests/test_arraysetops.py')
-rw-r--r--numpy/lib/tests/test_arraysetops.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_arraysetops.py b/numpy/lib/tests/test_arraysetops.py
index ae4b3c3aa..c2ba7ac86 100644
--- a/numpy/lib/tests/test_arraysetops.py
+++ b/numpy/lib/tests/test_arraysetops.py
@@ -247,7 +247,8 @@ class TestSetOps(object):
c = union1d(a, b)
assert_array_equal(c, ec)
- # Tests gh-10340, arguments to union1d should be flattened if they are not already 1D
+ # Tests gh-10340, arguments to union1d should be
+ # flattened if they are not already 1D
x = np.array([[0, 1, 2], [3, 4, 5]])
y = np.array([0, 1, 2, 3, 4])
ez = np.array([0, 1, 2, 3, 4, 5])