diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-08-04 16:55:08 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-08-04 16:55:08 +0000 |
commit | 65f9550a0adc644513d2eaa6c30b2a192f5deaee (patch) | |
tree | 35265cbe7dc26e1948f959075bfeb0f519335ec6 | |
parent | da6e95bd1bc84ea38843f420f4aa5a55fd9de6d1 (diff) | |
download | sqlalchemy-65f9550a0adc644513d2eaa6c30b2a192f5deaee.tar.gz |
Update for osx
-rw-r--r-- | test/sql/unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/unicode.py b/test/sql/unicode.py index eebfe970f..7be2c4dee 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -20,7 +20,7 @@ class UnicodeSchemaTest(PersistTest): Column(u'\u6e2c\u8a66', Integer), ) - t2 = Table(u'Unitéble2', metadata, + t2 = Table(u'Unite\u0301ble2', metadata, Column(u'méil', Integer, primary_key=True, key="a"), Column(u'\u6e2c\u8a66', Integer, ForeignKey(u'unitable1.méil'), key="b"), ) |