diff options
| author | Preston Timmons <prestontimmons@gmail.com> | 2015-01-05 14:43:15 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-05 19:35:02 -0500 |
| commit | de9ebdd39cb4f4b65475b43e0e32772d5a315654 (patch) | |
| tree | a1829e7865df451879a52f3dfda2affc18453809 /tests/template_tests/syntax_tests | |
| parent | a9aec1154e5b65fcaf608801905a1bbafcfbfbf7 (diff) | |
Fixed #24022 -- Deprecated the ssi tag.
Diffstat (limited to 'tests/template_tests/syntax_tests')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_ssi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/template_tests/syntax_tests/test_ssi.py b/tests/template_tests/syntax_tests/test_ssi.py index bc70aca9c6..b87c1f9c2c 100644 --- a/tests/template_tests/syntax_tests/test_ssi.py +++ b/tests/template_tests/syntax_tests/test_ssi.py @@ -1,11 +1,12 @@ import os from django.test import ignore_warnings, SimpleTestCase -from django.utils.deprecation import RemovedInDjango19Warning +from django.utils.deprecation import RemovedInDjango19Warning, RemovedInDjango20Warning from ..utils import ROOT, setup +@ignore_warnings(category=RemovedInDjango20Warning) class SsiTagTests(SimpleTestCase): # Test normal behavior |
