Skip to content

Commit

Permalink
TST: undo some linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhaber committed Dec 12, 2024
1 parent 0ad4e74 commit 2a34346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions marray/tests/test_marray.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,10 @@ def test_indexing(xp):
# `__setitem__` can change mask
x[1] = mxp.asarray(30, mask=False)
assert x[1].data == 30
assert x[1].mask is False
assert x[1].mask == False
x[2] = mxp.asarray(40, mask=True)
assert x[2].data == 40
assert x[2].mask is True
assert x[2].mask == True

# Indexing with masked array is not allowed
message = "Correct behavior for indexing with a masked array..."
Expand Down

0 comments on commit 2a34346

Please sign in to comment.