summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Locke <tlocke@tlocke.org.uk>2014-07-19 15:26:43 +0100
committerTony Locke <tlocke@tlocke.org.uk>2014-07-20 11:59:33 +0100
commitbdb99239f3b35bed943a93ff3fd65be916c05d67 (patch)
treea634fa92763fcfb59dc08909b270ea68f0f01605
parent8646af82aa428f9feac7a0e7021ed1a6279dc33c (diff)
downloadsqlalchemy-bdb99239f3b35bed943a93ff3fd65be916c05d67.tar.gz
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.
-rw-r--r--test/orm/test_naturalpks.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py
index 9f35b001a..f18efbf41 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)