diff options
-rw-r--r-- | doc/build/changelog/migration_11.rst | 2 | ||||
-rw-r--r-- | test/dialect/postgresql/test_query.py | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/doc/build/changelog/migration_11.rst b/doc/build/changelog/migration_11.rst index 12f1af721..c57c91761 100644 --- a/doc/build/changelog/migration_11.rst +++ b/doc/build/changelog/migration_11.rst @@ -16,7 +16,7 @@ What's New in SQLAlchemy 1.1? some issues may be moved to later milestones in order to allow for a timely release. - Document last updated: September 28, 2015 + Document last updated: October 7, 2015 Introduction ============ diff --git a/test/dialect/postgresql/test_query.py b/test/dialect/postgresql/test_query.py index 95c3ff465..6c10d78cc 100644 --- a/test/dialect/postgresql/test_query.py +++ b/test/dialect/postgresql/test_query.py @@ -78,9 +78,6 @@ class InsertTest(fixtures.TestBase, AssertsExecutionResults): eng.execute, t2.insert() ) - #assert_raises_message(exc.DBAPIError, - # 'violates not-null constraint', - # eng.execute, t2.insert()) def test_sequence_insert(self): table = Table( |