diff options
| author | Tony Locke <tlocke@tlocke.org.uk> | 2014-07-19 15:26:43 +0100 |
|---|---|---|
| committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-07-20 11:59:33 +0100 |
| commit | bdb99239f3b35bed943a93ff3fd65be916c05d67 (patch) | |
| tree | a634fa92763fcfb59dc08909b270ea68f0f01605 | |
| parent | 8646af82aa428f9feac7a0e7021ed1a6279dc33c (diff) | |
| download | sqlalchemy-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.py | 1 |
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) |
