diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-10-07 10:01:35 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-10-07 10:01:35 -0400 |
commit | 61fc1d07160b1dc7419eaf50fb2387738d68402f (patch) | |
tree | 0d08a583f9ceae522307c725e4ea67fff261b82f | |
parent | ba47b3e756b20d632db50acc2b30819c06801d9f (diff) | |
download | sqlalchemy-ticket_3216.tar.gz |
- tweaksticket_3216
-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( |