diff options
| author | Tim Graham <timograham@gmail.com> | 2015-03-05 12:38:42 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-07 07:42:39 -0500 |
| commit | c36b60836be9e78ab877566cc43dc03960ce944d (patch) | |
| tree | 9c7dde39c5d44e3db51707bf23d391827e17ba7a /tests/template_tests/syntax_tests/test_if_changed.py | |
| parent | 88c605e3e34cebd5485d286a17ac84c7b8b0faf1 (diff) | |
Fixed #24451 -- Deprecated comma-separated {% cycle %} syntax.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_if_changed.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_if_changed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/syntax_tests/test_if_changed.py b/tests/template_tests/syntax_tests/test_if_changed.py index 33e66880dd..b06c0bbdd9 100644 --- a/tests/template_tests/syntax_tests/test_if_changed.py +++ b/tests/template_tests/syntax_tests/test_if_changed.py @@ -124,14 +124,14 @@ class IfChangedTagTests(SimpleTestCase): self.assertEqual(output, '1-first,1-other,2-first,2-other,2-other,3-first,') @setup({'ifchanged-else02': '{% for id in ids %}{{ id }}-' - '{% ifchanged id %}{% cycle red,blue %}{% else %}grey{% endifchanged %}' + '{% ifchanged id %}{% cycle "red" "blue" %}{% else %}grey{% endifchanged %}' ',{% endfor %}'}) def test_ifchanged_else02(self): output = self.engine.render_to_string('ifchanged-else02', {'ids': [1, 1, 2, 2, 2, 3]}) self.assertEqual(output, '1-red,1-grey,2-blue,2-grey,2-grey,3-red,') @setup({'ifchanged-else03': '{% for id in ids %}{{ id }}' - '{% ifchanged id %}-{% cycle red,blue %}{% else %}{% endifchanged %}' + '{% ifchanged id %}-{% cycle "red" "blue" %}{% else %}{% endifchanged %}' ',{% endfor %}'}) def test_ifchanged_else03(self): output = self.engine.render_to_string('ifchanged-else03', {'ids': [1, 1, 2, 2, 2, 3]}) |
