mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-14 18:12:35 +08:00
Changing the way checks for the error code are made.
This commit is contained in:
@ -77,7 +77,7 @@ class test_MySQLdb(capabilities.DatabaseTest):
|
|||||||
try:
|
try:
|
||||||
self.cursor.execute("describe some_non_existent_table");
|
self.cursor.execute("describe some_non_existent_table");
|
||||||
except self.connection.ProgrammingError as msg:
|
except self.connection.ProgrammingError as msg:
|
||||||
self.assertEquals(msg[0], ER.NO_SUCH_TABLE)
|
self.assertTrue(str(ER.NO_SUCH_TABLE) in str(msg))
|
||||||
|
|
||||||
def test_bug_3514287(self):
|
def test_bug_3514287(self):
|
||||||
c = self.cursor
|
c = self.cursor
|
||||||
|
Reference in New Issue
Block a user