File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -913,7 +913,7 @@ def test_summary(self):
913
913
def test_format (self ):
914
914
self ._check_method_works (Index .format )
915
915
916
- index = Index ([datetime . now ()])
916
+ index = Index ([self . datetime_now_without_trailing_zeros ()])
917
917
918
918
# windows has different precision on datetime.datetime.now (it doesn't
919
919
# include us since the default for Timestamp shows these but Index
@@ -937,6 +937,15 @@ def test_format(self):
937
937
938
938
self .strIndex [:0 ].format ()
939
939
940
+ # GH 14626
941
+ def datetime_now_without_trailing_zeros (self ):
942
+ now = datetime .now ()
943
+
944
+ while str (now ).endswith ("000" ):
945
+ now = datetime .now ()
946
+
947
+ return now
948
+
940
949
def test_format_with_name_time_info (self ):
941
950
# bug I fixed 12/20/2011
942
951
inc = timedelta (hours = 4 )
You can’t perform that action at this time.
0 commit comments