diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2012-09-28 15:55:07 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2012-09-28 15:55:07 +0100 |
commit | 77193177a3239185f0cfca4d2844a8d5bc7d0d37 (patch) | |
tree | 78a2eed71fcb5b40ffffe0240911e58e64e7966b | |
parent | ba20cc391ce614ed216c13cd21e21619d16f99a4 (diff) | |
download | haskell-77193177a3239185f0cfca4d2844a8d5bc7d0d37.tar.gz |
Make the test output a bit more self-explanatory
-rw-r--r-- | testsuite/tests/th/T5358.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/th/T5358.hs b/testsuite/tests/th/T5358.hs index 39dec37faf..a912b009d3 100644 --- a/testsuite/tests/th/T5358.hs +++ b/testsuite/tests/th/T5358.hs @@ -10,5 +10,5 @@ t2 x = x prop_x1 x = t1 x == t2 x runTests = $( do VarI _ t _ _ <- reify (mkName "prop_x1") - error $ pprint t + error $ ("runTest called error: " ++ pprint t) ) |