diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-04-12 12:59:31 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-04-12 12:59:31 -0400 |
| commit | fc702c9d809878c5a5d85876bfa23e17177940c2 (patch) | |
| tree | 04edb1ca30b1b9905007c94af49db1f53cbf67e1 | |
| parent | 55c26710a1f6d6c6f87a9752035bc160f93b38d0 (diff) | |
| download | sqlalchemy-fc702c9d809878c5a5d85876bfa23e17177940c2.tar.gz | |
- adjust for "0"
| -rw-r--r-- | test/sql/test_types.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index ce2d3a5e0..2545dec59 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -967,7 +967,9 @@ class UnicodeTest(fixtures.TestBase): elif testing.against("mysql+mysqldb"): eq_( testing.db.dialect.returns_unicode_strings, - True if util.py3k or testing.db.url.query.get("use_unicode") + True if util.py3k or util.asbool( + testing.db.url.query.get("use_unicode") + ) else False ) else: |
