Skip to content

Commit df7e70a

Browse files
committed
Reverse condition
1 parent 50e9f4e commit df7e70a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pandas/tests/indexes/interval/test_interval_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def test_construction_overflow(self):
189189
expected = (50 + np.iinfo(np.int64).max) / 2
190190
assert result == expected
191191

192-
@pytest.mark.xfail(not WASM, reason="GH 23440")
192+
@pytest.mark.xfail(WASM, reason="GH 23440")
193193
@pytest.mark.parametrize(
194194
"left, right, expected",
195195
[

pandas/tests/indexing/interval/test_interval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def test_mi_intervalindex_slicing_with_scalar(self):
210210
expected = Series([1, 6, 2, 8, 7], index=expected_index, name="value")
211211
tm.assert_series_equal(result, expected)
212212

213-
@pytest.mark.xfail(not WASM, reason="GH 23440")
213+
@pytest.mark.xfail(WASM, reason="GH 23440")
214214
@pytest.mark.parametrize("base", [101, 1010])
215215
def test_reindex_behavior_with_interval_index(self, base):
216216
# GH 51826

pandas/tests/indexing/interval/test_interval_new.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def test_loc_getitem_missing_key_error_message(
214214
obj.loc[[4, 5, 6]]
215215

216216

217-
@pytest.mark.xfail(not WASM, reason="GH 23440")
217+
@pytest.mark.xfail(WASM, reason="GH 23440")
218218
@pytest.mark.parametrize(
219219
"intervals",
220220
[

0 commit comments

Comments
 (0)