diff options
author | David Eichmann <EichmannD@gmail.com> | 2019-02-04 16:51:58 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-16 01:07:53 -0500 |
commit | 0b92bdc79ddd38ceb69820dbc27ed36d7e5d7a57 (patch) | |
tree | e41e614c3bab769fb631a4dbe1a101cc92de4117 /testsuite/driver/testutil.py | |
parent | bcaba30a9602d7c5899c9754096a4460191dc667 (diff) | |
download | haskell-0b92bdc79ddd38ceb69820dbc27ed36d7e5d7a57.tar.gz |
Fix and Reapply "Performance tests: recover a baseline from ancestor commits and CI results."
Diffstat (limited to 'testsuite/driver/testutil.py')
-rw-r--r-- | testsuite/driver/testutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/testutil.py b/testsuite/driver/testutil.py index d5bd2f33c3..b73204fe43 100644 --- a/testsuite/driver/testutil.py +++ b/testsuite/driver/testutil.py @@ -19,7 +19,7 @@ def strip_quotes(s): return s.strip('\'"') def str_fail(s): - return '\033[1m\033[43m\033[31m' + s + '\033[0m' + return '\033[1m\033[31m' + s + '\033[0m' def str_pass(s): return '\033[1m\033[32m' + s + '\033[0m' |