summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2021-10-21 11:13:52 -0700
committerGitHub <noreply@github.com>2021-10-21 11:13:52 -0700
commit603d211446edb88faf6c570ba7f39a3a1c80de57 (patch)
tree1655afee414e74a90f30cb842335b1b35c614e9f /test
parent57b27e65de37f0d38821b1c2e9fb9d1c6b7d7ab2 (diff)
[Regression Script] Fix printing of error diff (#7451)
Diffstat (limited to 'test')
-rwxr-xr-xtest/regress/run_regression.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress/run_regression.py b/test/regress/run_regression.py
index 7b1c5a43f..edb45e4bd 100755
--- a/test/regress/run_regression.py
+++ b/test/regress/run_regression.py
@@ -74,7 +74,7 @@ class Tester:
print()
print("Error output difference")
print("=" * 80)
- print_diff(error, expected_error)
+ print_diff(error, benchmark_info.expected_error)
print("=" * 80)
print()
elif exit_status != benchmark_info.expected_exit_status:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback