From ba1bfef0f281dc131eb296eb84cec915638cd012 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 2 Feb 2016 16:59:56 -0500 Subject: - test fixes for metadata.enums value now being a list - modernize those tests as well --- test/dialect/postgresql/test_reflection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/dialect/postgresql/test_reflection.py') diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index 851facd2a..8da18108f 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -202,7 +202,7 @@ class DomainReflectionTest(fixtures.TestBase, AssertsExecutionResults): table = Table('enum_test', metadata, autoload=True) eq_( table.c.data.type.enums, - ('test', ) + ['test'] ) def test_table_is_reflected_test_schema(self): -- cgit v1.2.1