Skip to content

Commit 8157c35

Browse files
committed
test_converter::test_time_formatter: comment, formatting
1 parent d7fa51f commit 8157c35

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/plotting/test_converter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,18 @@ def test_conversion_outofbounds_datetime(self):
236236
assert rs == xp
237237

238238
def test_time_formatter(self):
239+
# issue 18478
240+
239241
# time2num(datetime.time.min)
240242
rs = self.tc(0)
241243
xp = '00:00'
242244
assert rs == xp
245+
243246
# time2num(datetime.time.max)
244247
rs = self.tc(86399.999999)
245248
xp = '23:59:59.999999'
246249
assert rs == xp
250+
247251
# some other times
248252
rs = self.tc(90000)
249253
xp = '01:00'

0 commit comments

Comments
 (0)