@@ -266,7 +266,7 @@ def test_github_issue_56():
266266
267267def test_github_pull_61 ():
268268 """Fixed code block multiline encoding on quotes/span"""
269- input = '''bc.. This is some TEXT inside a "Code BLOCK"
269+ test = '''bc.. This is some TEXT inside a "Code BLOCK"
270270
271271{
272272 if (JSON) {
@@ -296,13 +296,13 @@ def test_github_pull_61():
296296
297297<p>Here is some output!!! “Some” <span class="caps">CAPS</span></p>'''
298298 t = textile .Textile ()
299- result = t .parse (input )
299+ result = t .parse (test )
300300 assert result == expect
301301
302302def test_github_pull_62 ():
303303 """Fix for paragraph multiline, only last paragraph is rendered
304304 correctly"""
305- input = '''p.. First one 'is'
305+ test = '''p.. First one 'is'
306306
307307ESCAPED "bad"
308308
@@ -338,12 +338,12 @@ def test_github_pull_62():
338338
339339<p><span class="caps">ESCAPED</span> “good” test</p>'''
340340 t = textile .Textile ()
341- result = t .parse (input )
341+ result = t .parse (test )
342342 assert result == expect
343343
344344def test_github_pull_63 ():
345345 """Forgot to set multiline_para to False"""
346- input = '''p.. First one 'is'
346+ test = '''p.. First one 'is'
347347
348348ESCAPED "bad"
349349
@@ -403,5 +403,5 @@ def test_github_pull_63():
403403
404404<p><span class="caps">ESCAPED</span> “good” test</p>'''
405405 t = textile .Textile ()
406- result = t .parse (input )
406+ result = t .parse (test )
407407 assert result == expect
0 commit comments