Skip to content

Commit c2a0310

Browse files
committed
minimize diff
1 parent da5ecd1 commit c2a0310

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

pandas/tests/scalar/timedelta/test_timedelta.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -695,11 +695,7 @@ def test_round_implementation_bounds(self):
695695
@given(val=st.integers(min_value=iNaT + 1, max_value=lib.i8max))
696696
@pytest.mark.parametrize(
697697
"method",
698-
[
699-
Timedelta.round,
700-
Timedelta.floor,
701-
Timedelta.ceil,
702-
],
698+
[Timedelta.round, Timedelta.floor, Timedelta.ceil],
703699
)
704700
def test_round_sanity(self, val, method):
705701
val = np.int64(val)

pandas/tests/scalar/timestamp/test_unary_ops.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,7 @@ def test_round_implementation_bounds(self):
302302
@given(val=st.integers(iNaT + 1, lib.i8max))
303303
@pytest.mark.parametrize(
304304
"method",
305-
[
306-
Timestamp.round,
307-
Timedelta.floor,
308-
Timestamp.ceil,
309-
],
305+
[Timestamp.round, Timedelta.floor, Timestamp.ceil],
310306
)
311307
def test_round_sanity(self, val, method):
312308
val = np.int64(val)

0 commit comments

Comments
 (0)