Author: russellm
Date: 2009-06-18 10:03:17 -0500 (Thu, 18 Jun 2009)
New Revision: 11067

Modified:
   django/trunk/tests/regressiontests/templates/tests.py
Log:
Fixed #11270 -- Corrected naming conflict in templatetag test. Thanks to 
steveire for the report.

Modified: django/trunk/tests/regressiontests/templates/tests.py
===================================================================
--- django/trunk/tests/regressiontests/templates/tests.py       2009-06-18 
14:22:39 UTC (rev 11066)
+++ django/trunk/tests/regressiontests/templates/tests.py       2009-06-18 
15:03:17 UTC (rev 11067)
@@ -69,7 +69,7 @@
 
 class SomeOtherException(Exception):
     pass
-    
+
 class ContextStackException(Exception):
     pass
 
@@ -629,7 +629,7 @@
 
             # Logically the same as above, just written with explicit
             # ifchanged for the day.
-            'ifchanged-param04': ('{% for d in days %}{% ifchanged d.day %}{{ 
d.day }}{% endifchanged %}{% for h in d.hours %}{% ifchanged d.day h %}{{ h 
}}{% endifchanged %}{% endfor %}{% endfor %}', {'days':[{'day':1, 
'hours':[1,2,3]},{'day':2, 'hours':[3]},] }, '112323'),
+            'ifchanged-param05': ('{% for d in days %}{% ifchanged d.day %}{{ 
d.day }}{% endifchanged %}{% for h in d.hours %}{% ifchanged d.day h %}{{ h 
}}{% endifchanged %}{% endfor %}{% endfor %}', {'days':[{'day':1, 
'hours':[1,2,3]},{'day':2, 'hours':[3]},] }, '112323'),
 
             # Test the else clause of ifchanged.
             'ifchanged-else01': ('{% for id in ids %}{{ id }}{% ifchanged id 
%}-first{% else %}-other{% endifchanged %},{% endfor %}', {'ids': 
[1,1,2,2,2,3]}, '1-first,1-other,2-first,2-other,2-other,3-first,'),


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to