From b7655fff0cb866fb3fd0c6744a56018a5736d90a Mon Sep 17 00:00:00 2001 From: ryneeverett Date: Mon, 28 Dec 2015 15:20:16 -0500 Subject: [PATCH] tests: python<3.5 compatibility --- tests/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.py b/tests/test.py index e93027d..df22095 100644 --- a/tests/test.py +++ b/tests/test.py @@ -19,8 +19,8 @@ def remove(f): @classmethod def call(cls, *flags, inputfile='tests/data/some.md'): - subprocess.call([ - 'mkcodes', '--output', cls.output, *flags, inputfile]) + subprocess.call( + ['mkcodes', '--output', cls.output] + list(flags) + [inputfile]) def assertFileEqual(self, filename, expected): with open(filename, 'r') as output: