diff options
author | Tony Locke <tlocke@tlocke.org.uk> | 2014-05-10 14:55:21 +0100 |
---|---|---|
committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-05-21 19:17:41 +0100 |
commit | 30af3116286b39a8ffe328a5a99599528814a16b (patch) | |
tree | 7a718a30aaefd7d3b4cd38ed04be618a654b843a | |
parent | e36e2281000a130d751b60ffdcbc8449f5d85e7e (diff) | |
download | sqlalchemy-30af3116286b39a8ffe328a5a99599528814a16b.tar.gz |
Two tests now work for pg800 in EnumTest
The two tests, test_create_table() and test_unicode_labels() previously
failed under pg8000, but now they pass, so this commit opens them up.
-rw-r--r-- | test/dialect/postgresql/test_types.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index b30847bce..b322f45f9 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -108,9 +108,6 @@ class EnumTest(fixtures.TestBase, AssertsExecutionResults): @testing.fails_on('postgresql+zxjdbc', 'zxjdbc fails on ENUM: column "XXX" is of type ' 'XXX but expression is of type character varying') - @testing.fails_on('postgresql+pg8000', - 'zxjdbc fails on ENUM: column "XXX" is of type ' - 'XXX but expression is of type text') def test_create_table(self): metadata = MetaData(testing.db) t1 = Table('table', metadata, Column('id', Integer, @@ -138,9 +135,6 @@ class EnumTest(fixtures.TestBase, AssertsExecutionResults): @testing.fails_on('postgresql+zxjdbc', 'zxjdbc fails on ENUM: column "XXX" is of type ' 'XXX but expression is of type character varying') - @testing.fails_on('postgresql+pg8000', - 'zxjdbc fails on ENUM: column "XXX" is of type ' - 'XXX but expression is of type text') @testing.provide_metadata def test_unicode_labels(self): metadata = self.metadata |