Skip to content

Commit 8474523

Browse files
committed
minimize again
1 parent c2a0310 commit 8474523

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pandas/tests/scalar/timedelta/test_timedelta.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,8 +694,7 @@ def test_round_implementation_bounds(self):
694694
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build")
695695
@given(val=st.integers(min_value=iNaT + 1, max_value=lib.i8max))
696696
@pytest.mark.parametrize(
697-
"method",
698-
[Timedelta.round, Timedelta.floor, Timedelta.ceil],
697+
"method", [Timedelta.round, Timedelta.floor, Timedelta.ceil]
699698
)
700699
def test_round_sanity(self, val, method):
701700
val = np.int64(val)

pandas/tests/scalar/timestamp/test_unary_ops.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ def test_round_implementation_bounds(self):
301301
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build")
302302
@given(val=st.integers(iNaT + 1, lib.i8max))
303303
@pytest.mark.parametrize(
304-
"method",
305-
[Timestamp.round, Timedelta.floor, Timestamp.ceil],
304+
"method", [Timestamp.round, Timestamp.floor, Timestamp.ceil]
306305
)
307306
def test_round_sanity(self, val, method):
308307
val = np.int64(val)

0 commit comments

Comments
 (0)