Skip to content

Commit

Permalink
fix #478
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Jun 28, 2016
1 parent f2e79cd commit 23367cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymysql/tests/test_issues.py
Expand Up @@ -457,7 +457,7 @@ def test_issue_363(self):

# select WKT
query = "SELECT AsText(geom) FROM issue363"
if sys.version_info[0:2] >= (3,2) and self.mysql_server_is(conn, (5, 7, 0)):
if self.mysql_server_is(conn, (5, 7, 0)):
with self.assertWarns(pymysql.err.Warning) as cm:
cur.execute(query)
else:
Expand Down

0 comments on commit 23367cf

Please sign in to comment.