diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-07-13 19:01:57 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-07-13 19:01:57 +0000 |
| commit | 28f74e1abe59270553a00a50c2e5b4becb0349c0 (patch) | |
| tree | 8980339fc3aa99167f52f56c5dc3ac6a9915ab87 /test | |
| parent | 17ac26272402d9e92dfeb80ad0996eb0e9aff29f (diff) | |
| download | sqlalchemy-28f74e1abe59270553a00a50c2e5b4becb0349c0.tar.gz | |
Swap imports order, removed trailing whitespace from varchar test data
Diffstat (limited to 'test')
| -rw-r--r-- | test/orm/query.py | 4 |
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) |
