Skip to content

Commit be70f26

Browse files
committed
mask -> masking for indexing test names
1 parent e83b101 commit be70f26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

array_api_tests/test_array_object.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def test_setitem(shape, data):
124124

125125

126126
@given(hh.shapes(), st.data())
127-
def test_getitem_mask(shape, data):
127+
def test_getitem_masking(shape, data):
128128
x = data.draw(xps.arrays(xps.scalar_dtypes(), shape=shape), label="x")
129129
mask_shapes = st.one_of(
130130
st.sampled_from([x.shape, ()]),
@@ -168,7 +168,7 @@ def test_getitem_mask(shape, data):
168168

169169

170170
@given(hh.shapes(), st.data())
171-
def test_setitem_mask(shape, data):
171+
def test_setitem_masking(shape, data):
172172
x = data.draw(xps.arrays(xps.scalar_dtypes(), shape=shape), label="x")
173173
key = data.draw(xps.arrays(dtype=xp.bool, shape=shape), label="key")
174174
value = data.draw(

0 commit comments

Comments
 (0)