Skip to content

Commit

Permalink
removed obsolete code in fixtures
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.twig-project.org/trunk@215 93ef8e89-cb99-4229-a87c-7fa0fa45744b
  • Loading branch information
fabien committed Jan 8, 2010
1 parent 6251688 commit b8cf67a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/tags/for/keys_and_values.test
@@ -1,7 +1,7 @@
--TEST--
"for" tag can iterate over keys and values
--TEMPLATE--
{% for key, item in items|items %}
{% for key, item in items %}
* {{ key }}/{{ item }}
{% endfor %}
--DATA--
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/tags/for/objects.test
Expand Up @@ -9,7 +9,7 @@

{% endfor %}

{% for key, value in items|items %}
{% for key, value in items %}
* {{ key }}/{{ value }}
{% endfor %}

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/tags/for/objects_countable.test
Expand Up @@ -5,7 +5,7 @@
* {{ item }}
{% endfor %}

{% for key, value in items|items %}
{% for key, value in items %}
* {{ key }}/{{ value }}
{% endfor %}

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/tags/for/recursive.test
@@ -1,7 +1,7 @@
--TEST--
"for" tags can be nested
--TEMPLATE--
{% for key, item in items|items %}
{% for key, item in items %}
* {{ key }} ({{ loop.length }}):
{% for value in item %}
* {{ value }} ({{ loop.length }})
Expand Down

0 comments on commit b8cf67a

Please sign in to comment.