merge baztian's commit

master
Hongjiang Zhang 2020-05-31 06:13:21 +08:00
parent cac40267fc
commit abea135fb8
1 changed files with 2 additions and 2 deletions

View File

@ -213,8 +213,8 @@ class IntegrationTestBase(object):
cursor.execute("select * from CUSTOMER")
result = cursor.fetchall()
cursor.close()
exp = [(1, 12345)]
self.assertEqual(result, exp)
exp = "[(1, 12345)]"
self.assertEqual(str(result), exp)
class SqliteTestBase(IntegrationTestBase):