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 d7fa51f commit 8157c35Copy full SHA for 8157c35
pandas/tests/plotting/test_converter.py
@@ -236,14 +236,18 @@ def test_conversion_outofbounds_datetime(self):
236
assert rs == xp
237
238
def test_time_formatter(self):
239
+ # issue 18478
240
+
241
# time2num(datetime.time.min)
242
rs = self.tc(0)
243
xp = '00:00'
244
245
246
# time2num(datetime.time.max)
247
rs = self.tc(86399.999999)
248
xp = '23:59:59.999999'
249
250
251
# some other times
252
rs = self.tc(90000)
253
xp = '01:00'
0 commit comments