@@ -196,9 +196,6 @@ def test_timestamp_sub__ts_series_minus_td_series(temporal_dfs, column, pd_dtype
196
196
pandas .testing .assert_series_equal (
197
197
actual_result , expected_result , check_index_type = False
198
198
)
199
-
200
-
201
-
202
199
203
200
204
201
@pytest .mark .parametrize (
@@ -220,7 +217,6 @@ def test_timestamp_sub__ts_series_minus_td_literal(temporal_dfs, column, pd_dtyp
220
217
)
221
218
222
219
223
-
224
220
def test_timestamp_sub__ts_literal_minus_td_series (temporal_dfs ):
225
221
bf_df , pd_df = temporal_dfs
226
222
literal = pd .Timestamp ("2025-01-01 01:00:00" )
@@ -253,7 +249,6 @@ def test_timestamp_sub_with_numpy_op(temporal_dfs, column, pd_dtype):
253
249
)
254
250
255
251
256
-
257
252
def test_timestamp_sub_dataframes (temporal_dfs ):
258
253
columns = ["datetime_col" , "timestamp_col" ]
259
254
timedelta = pd .Timedelta (1 , unit = "s" )
@@ -269,8 +264,8 @@ def test_timestamp_sub_dataframes(temporal_dfs):
269
264
pandas .testing .assert_frame_equal (
270
265
actual_result , expected_result , check_index_type = False
271
266
)
272
-
273
-
267
+
268
+
274
269
@pytest .mark .parametrize (
275
270
"compare_func" ,
276
271
[
@@ -296,8 +291,7 @@ def test_timedelta_series_comparison(temporal_dfs, compare_func):
296
291
actual_result , expected_result , check_index_type = False
297
292
)
298
293
299
-
300
-
294
+
301
295
@pytest .mark .parametrize (
302
296
"compare_func" ,
303
297
[
@@ -319,9 +313,7 @@ def test_timedelta_series_and_literal_comparison(temporal_dfs, compare_func):
319
313
pandas .testing .assert_series_equal (
320
314
actual_result , expected_result , check_index_type = False
321
315
)
322
-
323
-
324
-
316
+
325
317
326
318
def test_timedelta_filtering (session ):
327
319
pd_series = pd .Series (
@@ -341,11 +333,10 @@ def test_timedelta_filtering(session):
341
333
)
342
334
343
335
expected_result = pd_series [(pd_series - timestamp ) > pd .Timedelta (1 , "h" )]
344
-
345
336
pandas .testing .assert_series_equal (
346
337
actual_result , expected_result , check_index_type = False
347
338
)
348
-
339
+
349
340
350
341
def test_timedelta_ordering (session ):
351
342
pd_df = pd .DataFrame (
0 commit comments