From: Tony Locke Date: Sat, 19 Jul 2014 14:26:43 +0000 (+0100) Subject: Remove requirement for manytomany_nonpassive X-Git-Tag: rel_1_0_0b1~281^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bdb99239f3b35bed943a93ff3fd65be916c05d67;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Remove requirement for manytomany_nonpassive 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. --- diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index 9f35b001a2..f18efbf41c 100644 --- a/test/orm/test_naturalpks.py +++ b/test/orm/test_naturalpks.py @@ -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)