Skip to content

Commit 3659e9c

Browse files
authored
go for green
1 parent 9fc5408 commit 3659e9c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pandas/tests/extension/test_sparse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def test_equals(self, data, na_value, as_series, box):
348348

349349
@pytest.mark.fails_arm_wheels
350350
def test_equals_same_data_different_object(self, data):
351-
super().test_equals(data)
351+
super().test_equals_same_data_different_objects(data)
352352

353353
@pytest.mark.parametrize(
354354
"func, na_action, expected",

pandas/tests/series/test_ufunc.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@ def ufunc(request):
1616
return request.param
1717

1818

19-
@pytest.fixture(params=[pytest.param(True, marks=pytest.mark.fails_arm_wheels), False], ids=["sparse", "dense"])
19+
@pytest.fixture(
20+
params=[
21+
pytest.param(True, marks=pytest.mark.fails_arm_wheels),
22+
False
23+
],
24+
ids=["sparse", "dense"]
25+
)
2026
def sparse(request):
2127
return request.param
2228

0 commit comments

Comments
 (0)