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: