diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-27 16:04:34 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-27 16:04:34 +0000 |
commit | 32440f2b3b61deda5bd8ee0abf707b76f44c926d (patch) | |
tree | 027bb110eed295ad768564049d548c07272a035e /test/testbase.py | |
parent | 363405aa9982fe46096f8b4991a59baf5e09294d (diff) | |
download | sqlalchemy-32440f2b3b61deda5bd8ee0abf707b76f44c926d.tar.gz |
- preliminary support for unicode table and column names added.
Diffstat (limited to 'test/testbase.py')
-rw-r--r-- | test/testbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testbase.py b/test/testbase.py index 34c05b8e5..88519ef41 100644 --- a/test/testbase.py +++ b/test/testbase.py @@ -263,7 +263,7 @@ class EngineAssert(proxy.BaseProxyEngine): def post_exec(engine, proxy, compiled, parameters, **kwargs): ctx = e self.engine.logger = self.logger - statement = str(compiled) + statement = unicode(compiled) statement = re.sub(r'\n', '', statement) if self.assert_list is not None: |