Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pymysql/tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def test_connection_gone_away(self):
time.sleep(2)
with self.assertRaises(pymysql.OperationalError) as cm:
cur.execute("SELECT 1+1")
# error occures while reading, not writing because of socket buffer.
# error occurs while reading, not writing because of socket buffer.
# self.assertEqual(cm.exception.args[0], 2006)
self.assertIn(cm.exception.args[0], (2006, 2013))

Expand Down
2 changes: 1 addition & 1 deletion pymysql/tests/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def test_issue_16(self):
"test_issue_17() requires a custom, legacy MySQL configuration and will not be run."
)
def test_issue_17(self):
"""could not connect mysql use passwod"""
"""could not connect mysql use password"""
conn = self.connect()
host = self.databases[0]["host"]
db = self.databases[0]["database"]
Expand Down