##// END OF EJS Templates
Fixed reference to `tokens`
Jonathan Frederic -
Show More
@@ -62,7 +62,7 b' class TestMarkdown(TestsBase):'
62 markdown2latex test
62 markdown2latex test
63 """
63 """
64 for index, test in enumerate(self.tests):
64 for index, test in enumerate(self.tests):
65 yield self._try_markdown, markdown2latex, test, tokens[index]
65 yield self._try_markdown, markdown2latex, test, self.tokens[index]
66
66
67
67
68 @onlyif_cmds_exist('pandoc')
68 @onlyif_cmds_exist('pandoc')
@@ -71,7 +71,7 b' class TestMarkdown(TestsBase):'
71 markdown2html test
71 markdown2html test
72 """
72 """
73 for index, test in enumerate(self.tests):
73 for index, test in enumerate(self.tests):
74 yield self._try_markdown, markdown2html, test, tokens[index]
74 yield self._try_markdown, markdown2html, test, self.tokens[index]
75
75
76
76
77 @onlyif_cmds_exist('pandoc')
77 @onlyif_cmds_exist('pandoc')
General Comments 0
You need to be logged in to leave comments. Login now