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 38e843f commit 1d0b5e5Copy full SHA for 1d0b5e5
pandas/tests/plotting/test_converter.py
@@ -112,14 +112,18 @@ def test_conversion_outofbounds_datetime(self):
112
assert rs == xp
113
114
def test_time_formatter(self):
115
+ # issue 18478
116
+
117
# time2num(datetime.time.min)
118
rs = self.tc(0)
119
xp = '00:00'
120
121
122
# time2num(datetime.time.max)
123
rs = self.tc(86399.999999)
124
xp = '23:59:59.999999'
125
126
127
# some other times
128
rs = self.tc(90000)
129
xp = '01:00'
0 commit comments