From 5be79a6e32867002f6f17dedf584d66c5d10f696 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 14 Aug 2007 15:10:42 +0000 Subject: [PATCH] adjustment to table_names test such that the DB can have extra tables around --- test/engine/reflection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/engine/reflection.py b/test/engine/reflection.py index 97bf4bab9b..da6f75149b 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. -- 2.47.3