Skip to content

Commit 5a75b1d

Browse files
authored
CI: troubleshoot segfault (#36511)
1 parent a0d6d06 commit 5a75b1d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pandas/tests/scalar/test_na_scalar.py

-8
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,3 @@ def test_pickle_roundtrip_containers(as_frame, values, dtype):
305305
s = s.to_frame(name="A")
306306
result = tm.round_trip_pickle(s)
307307
tm.assert_equal(result, s)
308-
309-
310-
@pytest.mark.parametrize("array", [np.array(["a"], dtype=object), ["a"]])
311-
def test_array_contains_na(array):
312-
# GH 31922
313-
msg = "boolean value of NA is ambiguous"
314-
with pytest.raises(TypeError, match=msg):
315-
NA in array

0 commit comments

Comments
 (0)