diff options
| author | Tim Graham <timograham@gmail.com> | 2017-02-10 08:19:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-10 08:19:32 -0500 |
| commit | ab83d4d8fe76c2c6bc3b0a96aa2baed9c9f07f19 (patch) | |
| tree | 6564a7f124afe5fd99173f1cbe6c8d1762b2fd90 /tests/context_processors | |
| parent | bece837829eafbc22f2598dadf82c9a8364b085a (diff) | |
Added multi_db=True to test cases that access the 'other' db connection.
Fixed a failure in the context processors tests when running in
reverse on MySQL due to an extra query after refs #27683.
Diffstat (limited to 'tests/context_processors')
| -rw-r--r-- | tests/context_processors/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/context_processors/tests.py b/tests/context_processors/tests.py index 635a81f7f9..0baf806c1d 100644 --- a/tests/context_processors/tests.py +++ b/tests/context_processors/tests.py @@ -64,6 +64,7 @@ class DebugContextProcessorTests(TestCase): """ Tests for the ``django.template.context_processors.debug`` processor. """ + multi_db = True def test_debug(self): url = '/debug/' |
