Remove stray print call.

This commit is contained in:
Jussi Pakkanen 2020-05-23 16:07:35 +03:00
parent 22bc0d46a5
commit f2e2e910d9
1 changed files with 0 additions and 1 deletions

View File

@ -417,7 +417,6 @@ def _compare_output(expected: T.List[T.Dict[str, str]], output: str, desc: str)
match = bool(re.match(expected, actual))
else:
match = (expected == actual)
print(actual)
if match:
how, expected = next_expected(i)