Skip to content

Commit

Permalink
Merge pull request #1571 from kwmsmith/bugfix/pymysql-0.7.6-regression
Browse files Browse the repository at this point in the history
Fix test regression introduced by pymysql version 0.7.6.
  • Loading branch information
kwmsmith committed Aug 11, 2016
2 parents 24b2da9 + 19d7a00 commit dfb2c3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blaze/compute/tests/test_mysql_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_agg_sql(db, data):
nyc.passenger_count as passenger_count
from
nyc
where nyc.passenger_count < %s) as alias
where nyc.passenger_count < % ( passenger_count_1 ) s) as alias
"""
assert normalize(str(result)) == normalize(expected)

Expand Down
3 changes: 2 additions & 1 deletion docs/source/whatsnew/0.11.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ None
Bug Fixes
~~~~~~~~~

None
* Fixed a testing regression introduced by the latest pymysql version
(:issue:`1571`).

Miscellaneous
~~~~~~~~~~~~~
Expand Down

0 comments on commit dfb2c3b

Please sign in to comment.