summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/regressiontests/templates/tests.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py
index e1e448acba..176972fb25 100644
--- a/tests/regressiontests/templates/tests.py
+++ b/tests/regressiontests/templates/tests.py
@@ -444,14 +444,9 @@ class Templates(TestCase):
def test_ifchanged_render_once(self):
""" Test for ticket #19890. The content of ifchanged template tag was
rendered twice."""
-
- template = Template('{% ifchanged %}{{ gen.next }}{% endifchanged %}')
- def gen():
- for i in xrange(1,10):
- yield 'iteration no %d' % i
-
- output = template.render(Context({'gen': gen()}))
- self.assertEqual(output, 'iteration no 1')
+ template = Template('{% ifchanged %}{% cycle "1st time" "2nd time" %}{% endifchanged %}')
+ output = template.render(Context({}))
+ self.assertEqual(output, '1st time')
def test_templates(self):
template_tests = self.get_template_tests()