summaryrefslogtreecommitdiff
path: root/test/engine/reflection.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-14 15:10:42 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-14 15:10:42 +0000
commit5be79a6e32867002f6f17dedf584d66c5d10f696 (patch)
tree69ab27b0d986a3c3f6a6da052cd9cc391504e290 /test/engine/reflection.py
parent054e76df44a01da99ec9cbed8b56b270e98839ec (diff)
downloadsqlalchemy-5be79a6e32867002f6f17dedf584d66c5d10f696.tar.gz
adjustment to table_names test such that the DB can have extra tables around
Diffstat (limited to 'test/engine/reflection.py')
-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 97bf4bab9..da6f75149 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -651,7 +651,7 @@ class UnicodeTest(PersistTest):
metadata.create_all()
reflected = set(bind.table_names())
- if reflected != names:
+ if not names.issubset(reflected):
# Python source files in the utf-8 coding seem to normalize
# literals as NFC (and the above are explicitly NFC). Maybe
# this database normalizes NFD on reflection.