diff options
author | Anatoly Bubenkov <bubenkoff@gmail.com> | 2013-09-10 14:05:18 +0200 |
---|---|---|
committer | Anatoly Bubenkov <bubenkoff@gmail.com> | 2013-09-10 14:05:18 +0200 |
commit | 537ca35e20c65c145be7cd54fb817add5f6f259f (patch) | |
tree | 555ad55b85cec8a776827a98a2d06d5ccee60bd7 | |
parent | 8e1f7431e4db2990f3a0bce83e26d3be8eea0a53 (diff) | |
download | sqlalchemy-pr/27.tar.gz |
fix syntax error for py3.2pr/27
-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 1b424e6c8..018db9297 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(), |