From 28f74e1abe59270553a00a50c2e5b4becb0349c0 Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Fri, 13 Jul 2007 19:01:57 +0000 Subject: [PATCH] Swap imports order, removed trailing whitespace from varchar test data --- test/orm/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/orm/query.py b/test/orm/query.py index f3172a11d1..a3d6787dd8 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) -- 2.47.2