]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Remove requirement for manytomany_nonpassive
authorTony Locke <tlocke@tlocke.org.uk>
Sat, 19 Jul 2014 14:26:43 +0000 (15:26 +0100)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 25 Jul 2014 20:48:35 +0000 (16:48 -0400)
Removed the non_updating_cascade requirement from
test_manytomany_nonpassive. This is because setting
passive_updates=False in a relationship should work on *all* dialects.

test/orm/test_naturalpks.py

index 9f35b001a2427e64b65bfb617f2524933fdaae37..f18efbf41c49eeaef37670777ba604c6c3c8d4eb 100644 (file)
@@ -389,7 +389,6 @@ class NaturalPKTest(fixtures.MappedTest):
     def test_manytomany_passive(self):
         self._test_manytomany(True)
 
-    @testing.requires.non_updating_cascade
     def test_manytomany_nonpassive(self):
         self._test_manytomany(False)