summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/orm/query.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/query.py b/test/orm/query.py
index f3172a11d..a3d6787dd 100644
--- a/test/orm/query.py
+++ b/test/orm/query.py
@@ -1,6 +1,6 @@
+import testbase
from sqlalchemy import *
from sqlalchemy.orm import *
-import testbase
from fixtures import *
class Base(object):
@@ -90,7 +90,7 @@ class GetTest(QueryTest):
Column('id', Unicode(40), primary_key=True),
Column('data', Unicode(40)))
table.create()
- ustring = 'petit voix m\xe2\x80\x99a '.decode('utf-8')
+ ustring = 'petit voix m\xe2\x80\x99a'.decode('utf-8')
table.insert().execute(id=ustring, data=ustring)
class LocalFoo(Base):pass
mapper(LocalFoo, table)