diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-01-22 23:40:34 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-01-22 23:40:34 +0000 |
commit | d22658b77ebbd435d45a7b3af0452fabe5788a95 (patch) | |
tree | 390f66208f0b9d8f69036d3316f77142fd94b9e1 /testsuite/driver | |
parent | f999a39be38d7bd1272dc72168afa3934213b73d (diff) | |
download | haskell-d22658b77ebbd435d45a7b3af0452fabe5788a95.tar.gz |
Remove a stray colon from the framework fail messages
Diffstat (limited to 'testsuite/driver')
-rw-r--r-- | testsuite/driver/testlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index fd11be1840..ba03eba4ad 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -919,7 +919,7 @@ def skiptest (name, way): def framework_fail( name, way, reason ): full_name = name + '(' + way + ')' - print '*** framework failure for', full_name, reason, ':' + print '*** framework failure for', full_name, reason t.n_framework_failures = t.n_framework_failures + 1 if name in t.framework_failures: t.framework_failures[name].append(way) |