[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 15:24:34 UTC 2010


The following commit has been merged in the master branch:
commit 71c7f2d5f3ec3618dc923c5cefedd3ab5534e5d3
Author: John Goerzen <jgoerzen at complete.org>
Date:   Mon Jan 26 09:58:48 2009 -0600

    Fixed missing paren

diff --git a/src/Test/HUnit/Tools.hs b/src/Test/HUnit/Tools.hs
index 1c7805d..8703c12 100644
--- a/src/Test/HUnit/Tools.hs
+++ b/src/Test/HUnit/Tools.hs
@@ -110,7 +110,7 @@ qc2hu :: QC.Testable a => Int -> String -> a -> HU.Test
 qc2hu maxTest = qccheck (defaultConfig {configMaxTest = maxTest, configMaxFail = 20000,
                             configEvery = testCount})
     -- configEvery = testCount for displaying a running test counter
-    where testCountBase n = " (test " ++ show n ++ "/" ++ show maxTest
+    where testCountBase n = " (test " ++ show n ++ "/" ++ show maxTest ++ ")"
           testCount n _ = testCountBase n ++ 
                           replicate (length (testCountBase n)) '\b'
 

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list