Skip to content

Commit 44fe729

Browse files
committed
quiet the linter by changing variable input to test
1 parent 8a741f6 commit 44fe729

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/test_github_issues.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def test_github_issue_56():
266266

267267
def 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!!! &#8220;Some&#8221; <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

302302
def 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
307307
ESCAPED "bad"
308308
@@ -338,12 +338,12 @@ def test_github_pull_62():
338338
339339
<p><span class="caps">ESCAPED</span> &#8220;good&#8221; test</p>'''
340340
t = textile.Textile()
341-
result = t.parse(input)
341+
result = t.parse(test)
342342
assert result == expect
343343

344344
def 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
348348
ESCAPED "bad"
349349
@@ -403,5 +403,5 @@ def test_github_pull_63():
403403
404404
<p><span class="caps">ESCAPED</span> &#8220;good&#8221; test</p>'''
405405
t = textile.Textile()
406-
result = t.parse(input)
406+
result = t.parse(test)
407407
assert result == expect

0 commit comments

Comments
 (0)