diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2018-12-22 23:14:47 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-12-22 18:44:21 -0500 |
| commit | 7534e43497fed7714910ccec2a6e8acade8263ca (patch) | |
| tree | fc0a33b24c941c26869c481b85173b9982a24cc3 | |
| parent | a68ea231012434b522ce45c513d84add516afa60 (diff) | |
Refs #14204 -- Removed obsolete referential integrity comment for SQLite.
| -rw-r--r-- | tests/backends/tests.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 19b46e916e..ee6bee3a02 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -455,13 +455,8 @@ class BackendTestCase(TransactionTestCase): connection.init_connection_state() -# We don't make these tests conditional because that means we would need to -# check and differentiate between: -# * MySQL+InnoDB, MySQL+MYISAM (something we currently can't do). -# * if sqlite3 (if/once we get #14204 fixed) has referential integrity turned -# on or not, something that would be controlled by runtime support and user -# preference. -# verify if its type is django.database.db.IntegrityError. +# These tests aren't conditional because it would require differentiating +# between MySQL+InnoDB and MySQL+MYISAM (something we currently can't do). class FkConstraintsTests(TransactionTestCase): available_apps = ['backends'] |
