diff options
| author | Tony Locke <tlocke@tlocke.org.uk> | 2014-07-19 16:26:09 +0100 |
|---|---|---|
| committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-07-20 11:59:33 +0100 |
| commit | b4f9a6949b65c9a95c0ce05ab767177b7636ea13 (patch) | |
| tree | 245b35bd019ca91ccec2b48f088657637f134b07 /test/orm | |
| parent | aa6ecc36b7f483e51b5b626e9f5210428ccb568a (diff) | |
| download | sqlalchemy-b4f9a6949b65c9a95c0ce05ab767177b7636ea13.tar.gz | |
Opened test_self_referential for pg8000
The test orm/test_froms.py test_self_referential works with pg8000 now,
so I've opened it up.
Diffstat (limited to 'test/orm')
| -rw-r--r-- | test/orm/test_froms.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/orm/test_froms.py b/test/orm/test_froms.py index 7c06836d2..ecaa92bc8 100644 --- a/test/orm/test_froms.py +++ b/test/orm/test_froms.py @@ -1390,7 +1390,6 @@ class MixedEntitiesTest(QueryTest, AssertsCompiledSQL): self.assert_sql_count(testing.db, go, 1) @testing.fails_on("firebird", "unknown") - @testing.fails_on('postgresql+pg8000', "'type oid 705 not mapped to py type' (due to literal)") def test_self_referential(self): Order = self.classes.Order @@ -2527,4 +2526,4 @@ class LabelCollideTest(fixtures.MappedTest): eq_(row.Bar.id, 3) # all three columns are loaded independently without # overlap, no additional SQL to load all attributes - self.assert_sql_count(testing.db, go, 0)
\ No newline at end of file + self.assert_sql_count(testing.db, go, 0) |
