We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7efff commit 3e5c421Copy full SHA for 3e5c421
pandas/tseries/tests/test_converter.py
@@ -105,7 +105,7 @@ def test_dateindex_conversion(self):
105
dateindex = tm.makeDateIndex(k=10, freq=freq)
106
rs = self.dtc.convert(dateindex, None, None)
107
xp = Index(converter.dates.date2num(dateindex._mpl_repr()))
108
- tm.assert_almost_equal(rs, xp, decimals)
+ tm.assert_index_equal(rs, xp, decimals)
109
110
def test_resolution(self):
111
def _assert_less(ts1, ts2):
0 commit comments