diff options
| author | MilesCranmer <miles.cranmer@gmail.com> | 2022-06-10 14:45:36 -0400 |
|---|---|---|
| committer | MilesCranmer <miles.cranmer@gmail.com> | 2022-06-10 14:45:36 -0400 |
| commit | a8da1ef8db9d30c2dbc6b8fdd0c5d3b190dfad7b (patch) | |
| tree | e5ffe7e742690e34f12ecf5c83767b10afe22e98 /numpy/lib/tests | |
| parent | 281dadc5fbe8c49df12125dec66040dd55d69e49 (diff) | |
| download | numpy-a8da1ef8db9d30c2dbc6b8fdd0c5d3b190dfad7b.tar.gz | |
MAINT: Fix linting error in test
Diffstat (limited to 'numpy/lib/tests')
| -rw-r--r-- | numpy/lib/tests/test_arraysetops.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_arraysetops.py b/numpy/lib/tests/test_arraysetops.py index affd2e2d6..e4f37556a 100644 --- a/numpy/lib/tests/test_arraysetops.py +++ b/numpy/lib/tests/test_arraysetops.py @@ -438,7 +438,8 @@ class TestSetOps: assert_array_equal(in1d(a, long_b, assume_unique=False), ec) assert_array_equal(in1d(a, b, assume_unique=True, method="dictionary"), ec) - assert_array_equal(in1d(a, b, assume_unique=False, method="dictionary"), + assert_array_equal(in1d(a, b, assume_unique=False, + method="dictionary"), ec) assert_array_equal(in1d(a, long_b, assume_unique=True, method="dictionary"), |
