From 10173821965fa65654b172891b2102a8426132ca Mon Sep 17 00:00:00 2001 From: gwrome Date: Wed, 13 Mar 2019 15:10:48 -0500 Subject: [PATCH] #25707 - Fixed flakiness in stata write test (#25714) --- pandas/tests/io/test_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/test_common.py b/pandas/tests/io/test_common.py index 3354bca63be92..4051adc7ee4cb 100644 --- a/pandas/tests/io/test_common.py +++ b/pandas/tests/io/test_common.py @@ -251,7 +251,7 @@ def test_read_fspath_all_read_table(self, datapath): ('to_latex', {}, 'os'), ('to_msgpack', {}, 'os'), ('to_pickle', {}, 'os'), - ('to_stata', {}, 'os'), + ('to_stata', {'time_stamp': pd.to_datetime('2019-01-01 00:00')}, 'os'), ]) def test_write_fspath_all(self, writer_name, writer_kwargs, module): p1 = tm.ensure_clean('string')