From: Tony Locke Date: Sat, 10 May 2014 13:55:21 +0000 (+0100) Subject: Two tests now work for pg800 in EnumTest X-Git-Tag: rel_0_9_5~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80c3e6cdb40c2655dfaf54a61669bddeed3e5923;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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. --- diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index b94cc040a5..1bfa8c4b7a 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