summaryrefslogtreecommitdiff
path: root/tests/TestSuite
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-11-24 13:34:50 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2012-11-24 13:35:00 +0100
commit6e7a80e8a3a4ac5d77a2f520cd8ecc1aba6f32ef (patch)
tree28bbc77da81f485db5aa696d658e69c142c13bdf /tests/TestSuite
parent0a6b2b259862b90ccca11281de89091e2e01cb4d (diff)
downloadhakyll-6e7a80e8a3a4ac5d77a2f520cd8ecc1aba6f32ef.tar.gz
Simpler rules
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 ..]]
--------------------------------------------------------------------------------