diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-22 18:48:59 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-22 18:48:59 -0400 |
commit | 5d2bfc4df45bd2f3347391c67b975066fdb74723 (patch) | |
tree | b839cd35f391a15e5991be3762c531a8f5e7a584 /test/dialect/test_sqlite.py | |
parent | eed9cfc3ae027f21a1f46a6e07fcef0724741eb2 (diff) | |
download | sqlalchemy-5d2bfc4df45bd2f3347391c67b975066fdb74723.tar.gz |
- Fixed a few errant ``u''`` strings that would prevent tests from passing
in Py3.2. Patch courtesy Arfrever Frehtes Taifersar Arahesis. fixes #2980
Diffstat (limited to 'test/dialect/test_sqlite.py')
-rw-r--r-- | test/dialect/test_sqlite.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index f2b948c63..4099b54d7 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -111,7 +111,7 @@ class TestTypes(fixtures.TestBase, AssertsExecutionResults): testing.db.execute("insert into t (d) values ('2004-05-21T00:00:00')") eq_( testing.db.execute("select * from t order by d").fetchall(), - [(u'2004-05-21T00:00:00',), (u'2010-10-15T12:37:00',)] + [('2004-05-21T00:00:00',), ('2010-10-15T12:37:00',)] ) eq_( testing.db.execute(select([t.c.d]).order_by(t.c.d)).fetchall(), @@ -133,7 +133,7 @@ class TestTypes(fixtures.TestBase, AssertsExecutionResults): testing.db.execute("insert into t (d) values ('2004|05|21')") eq_( testing.db.execute("select * from t order by d").fetchall(), - [(u'2004|05|21',), (u'2010|10|15',)] + [('2004|05|21',), ('2010|10|15',)] ) eq_( testing.db.execute(select([t.c.d]).order_by(t.c.d)).fetchall(), |