diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-02-02 16:59:56 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-02-02 16:59:56 -0500 |
commit | ba1bfef0f281dc131eb296eb84cec915638cd012 (patch) | |
tree | 9a77fe27c05e58e51748d3f1ce02c0174af18025 /test/dialect/postgresql/test_reflection.py | |
parent | df55695f8e99f0523795a7b9e9cb9babee2e00e1 (diff) | |
download | sqlalchemy-ba1bfef0f281dc131eb296eb84cec915638cd012.tar.gz |
- test fixes for metadata.enums value now being a list
- modernize those tests as well
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |