We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f05eb commit 371caaaCopy full SHA for 371caaa
pandas/tests/io/test_sql.py
@@ -2131,7 +2131,7 @@ def test_write_row_by_row(self):
2131
2132
result = sql.read_sql("select * from test", con=self.conn)
2133
result.index = frame.index
2134
- tm.assert_frame_equal(result, frame)
+ tm.assert_frame_equal(result, frame, check_less_precise=True)
2135
2136
def test_execute(self):
2137
frame = tm.makeTimeDataFrame()
@@ -2416,7 +2416,7 @@ def test_write_row_by_row(self):
2416
2417
2418
2419
2420
2421
def test_chunksize_read_type(self):
2422
_skip_if_no_pymysql()
0 commit comments