summaryrefslogtreecommitdiff
path: root/tests/TestSuite
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestSuite')
-rw-r--r--tests/TestSuite/Util.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestSuite/Util.hs b/tests/TestSuite/Util.hs
index 6c07c50..8e6249e 100644
--- a/tests/TestSuite/Util.hs
+++ b/tests/TestSuite/Util.hs
@@ -36,7 +36,7 @@ fromAssertions :: String -- ^ Name
-> [Assertion] -- ^ Cases
-> [Test] -- ^ Result tests
fromAssertions name =
- zipWith testCase [printf "%s [%3d]" name n | n <- [1 :: Int ..]]
+ zipWith testCase [printf "[%2d] %s" n name | n <- [1 :: Int ..]]
--------------------------------------------------------------------------------