summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-07-23 05:10:04 +0000
committerMichael Trier <mtrier@gmail.com>2008-07-23 05:10:04 +0000
commit951fe224fa5638e2c1c224f9ebfcaebb38e49922 (patch)
tree1964b051072965f978be06604e1e89cec1db2b0b /test
parentcfb9bbde7da6fe2b145a49851dc2d6424941ef25 (diff)
downloadsqlalchemy-951fe224fa5638e2c1c224f9ebfcaebb38e49922.tar.gz
Corrected problem with detecting closed connections. Fixed issues in reflecttable for reflecting the mssql tables. Removed unicode reflection test from mssql. Need to investigate this further.
Diffstat (limited to 'test')
-rw-r--r--test/engine/reflection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/reflection.py b/test/engine/reflection.py
index 3f8d4fff7..873c05aa5 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -618,7 +618,7 @@ class UnicodeReflectionTest(TestBase):
bind = engines.utf8_engine(options={'convert_unicode':True})
metadata = MetaData(bind)
- if testing.against('sybase', 'maxdb', 'oracle'):
+ if testing.against('sybase', 'maxdb', 'oracle', 'mssql'):
names = set(['plain'])
else:
names = set([u'plain', u'Unit\u00e9ble', u'\u6e2c\u8a66'])