summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-05-23 16:07:35 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2020-05-23 17:50:21 +0300
commitf2e2e910d9c646849e55f97215217b87de491805 (patch)
treec7eb7441f8aa5868a93970ac07a353b1fc2e8001
parent22bc0d46a541caa8528b254252bdb1e5c13599f7 (diff)
downloadmeson-f2e2e910d9c646849e55f97215217b87de491805.tar.gz
Remove stray print call.
-rwxr-xr-xrun_project_tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index bcfe05cea..18731d65a 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -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)