summaryrefslogtreecommitdiffstats
path: root/tests/test_lps_gen.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_lps_gen.py')
-rw-r--r--tests/test_lps_gen.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/test_lps_gen.py b/tests/test_lps_gen.py
index 2b89414..19dd69c 100644
--- a/tests/test_lps_gen.py
+++ b/tests/test_lps_gen.py
@@ -112,22 +112,22 @@ class TestLpsGen(object):
Testing `LPSMarkdown` class - Speaker
"""
speakers = [
- 'Richard Stallman',
- 'Christopher Webber',
- 'ginger coons',
+ ['Richard Stallman'],
+ ['<a href="http://dustycloud.org">Christopher Webber</a>'],
+ ['ginger coons'],
['Marianne Corvellec', 'Jonathan Le Lous'],
- 'Seth Schoen',
- 'Jonas Öberg',
- 'Benjamin Mako Hill',
- 'Bradley Kuhn',
- 'Ken Starks',
+ ['Seth Schoen'],
+ ['Jonas Öberg'],
+ ['Benjamin Mako Hill'],
+ ['Bradley Kuhn'],
+ ['Ken Starks'],
]
i = 0
for lps_timeslots in self.lps_dict.values():
for lps_sessions in lps_timeslots.values():
for session_info in lps_sessions.values():
- assert_equal(session_info['speaker'], speakers[i])
+ assert_equal(session_info['speakers'], speakers[i])
i = i + 1