]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
remove deprecateds
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 8 Jun 2012 18:40:45 +0000 (14:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 8 Jun 2012 18:40:45 +0000 (14:40 -0400)
test/orm/test_cascade.py
test/orm/test_session.py

index 4a20880b65ad8fd6924ae583a78ceb6786a2d5d5..3edf8af65bd8263133b87d04ef5c71d25dbc0011 100644 (file)
@@ -2630,7 +2630,6 @@ class PartialFlushTest(fixtures.MappedTest):
             Column("parent_id", Integer, ForeignKey("parent.id"))
         )
 
-    @testing.uses_deprecated()
     def test_o2m_m2o(self):
         base, noninh_child = self.tables.base, self.tables.noninh_child
 
@@ -2681,7 +2680,6 @@ class PartialFlushTest(fixtures.MappedTest):
         assert c2 in sess and c2 not in sess.new
         assert b1 in sess and b1 in sess.new
 
-    @testing.uses_deprecated()
     def test_circular_sort(self):
         """test ticket 1306"""
 
index e1a66724c5cf16f9927320065dfaf942723ea71c..828571f9d0a10f1ef10892ebfd7e81046aed7a56 100644 (file)
@@ -1229,7 +1229,6 @@ class SessionInterface(fixtures.TestBase):
                       Integer, primary_key=True,
                       test_needs_autoincrement=True)))
 
-    @testing.uses_deprecated()
     def _test_instance_guards(self, user_arg):
         watchdog = set()