We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
mask
masking
1 parent e83b101 commit be70f26Copy full SHA for be70f26
1 file changed
array_api_tests/test_array_object.py
@@ -124,7 +124,7 @@ def test_setitem(shape, data):
124
125
126
@given(hh.shapes(), st.data())
127
-def test_getitem_mask(shape, data):
+def test_getitem_masking(shape, data):
128
x = data.draw(xps.arrays(xps.scalar_dtypes(), shape=shape), label="x")
129
mask_shapes = st.one_of(
130
st.sampled_from([x.shape, ()]),
@@ -168,7 +168,7 @@ def test_getitem_mask(shape, data):
168
169
170
171
-def test_setitem_mask(shape, data):
+def test_setitem_masking(shape, data):
172
173
key = data.draw(xps.arrays(dtype=xp.bool, shape=shape), label="key")
174
value = data.draw(
0 commit comments