From 6053fae062423dec9df375e9e73b3ff69fbb6b0a Mon Sep 17 00:00:00 2001 From: Tony Locke Date: Sat, 19 Jul 2014 15:26:43 +0100 Subject: [PATCH] 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. --- test/orm/test_naturalpks.py | 1 - 1 file changed, 1 deletion(-) 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) -- 2.47.3