summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-02-07 14:14:29 -0500
committerrsiddharth <rsd@gnu.org>2016-02-07 14:14:29 -0500
commit700229847e2bb56e607a439d683da13bd84990b8 (patch)
tree096dfb5367d45a38231999d236c5e12b4744a093 /tests
parentfa7dec289c0b5b2ab7b447f0c64ec2be0c5e93b9 (diff)
tests/files/lp-sch-2016.jinja2: fixed an issue.
Context changed from `schedule` -> `lp_dict`.
Diffstat (limited to 'tests')
-rw-r--r--tests/files/lp-sch-2016.jinja24
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/files/lp-sch-2016.jinja2 b/tests/files/lp-sch-2016.jinja2
index 39562de..0f0e372 100644
--- a/tests/files/lp-sch-2016.jinja2
+++ b/tests/files/lp-sch-2016.jinja2
@@ -114,8 +114,8 @@
{% endfor %} {# timeslot start #}
{% endmacro %}
-{# lp 2016 template start #}
-{% for day, timeslots in schedule.iteritems() %} {# day start #}
+{# lp schedule 2016 template start #}
+{% for day, timeslots in lp_dict.iteritems() %} {# day start #}
<article id="day-{{ loop.index }}-program" class="program-day">
{{ mk_day_header(day) }}
{{ populate_timeslots(timeslots, loop.index) }}