From: Jason Kirtland Date: Fri, 13 Jul 2007 19:01:57 +0000 (+0000) Subject: Swap imports order, removed trailing whitespace from varchar test data X-Git-Tag: rel_0_3_9~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28f74e1abe59270553a00a50c2e5b4becb0349c0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Swap imports order, removed trailing whitespace from varchar test data --- 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)