We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcb9a6 commit 8b331a4Copy full SHA for 8b331a4
pandas/tests/groupby/test_quantile.py
@@ -372,7 +372,7 @@ def test_timestamp_groupby_quantile():
372
{"category": 174.1, "value": 374.1},
373
{"category": 182.9, "value": 382.9},
374
{"category": 190.5, "value": 390.5},
375
- {"category": 198.1, "value": 398.1}
+ {"category": 198.1, "value": 398.1},
376
],
377
index=pd.MultiIndex.from_tuples(
378
[
@@ -387,9 +387,10 @@ def test_timestamp_groupby_quantile():
387
(pd.Timestamp("2020-04-19 02:00:00+00:00"), 0.9),
388
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.1),
389
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.5),
390
- (pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.9)
391
- ], names=("timestamp", None)
392
- )
+ (pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.9),
+ ],
+ names=("timestamp", None),
393
+ ),
394
)
395
396
tm.assert_frame_equal(result, expected)
0 commit comments