hedgehog-extras 0.6.0.0 → 0.6.0.1
raw patch · 2 files changed
+5/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
hedgehog-extras.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4 name: hedgehog-extras-version: 0.6.0.0+version: 0.6.0.1 synopsis: Supplemental library for hedgehog description: Supplemental library for hedgehog. category: Test
src/Hedgehog/Extras/Test/Process.hs view
@@ -174,8 +174,8 @@ , "━━━━ command ━━━━" , pkgBin <> " " <> L.unwords (fmap argQuote arguments) ]- ++ if L.null stdout then [] else ["━━━━ stdout ━━━━" , stdout]- ++ if L.null stderr then [] else ["━━━━ stderr ━━━━" , stderr]+ ++ (if L.null stdout then [] else ["━━━━ stdout ━━━━" , stdout])+ ++ (if L.null stderr then [] else ["━━━━ stderr ━━━━" , stderr]) H.failMessage GHC.callStack "Execute process failed" IO.ExitSuccess -> return stdout @@ -222,8 +222,8 @@ , "━━━━ command ━━━━" , bin <> " " <> L.unwords (fmap argQuote arguments) ]- ++ if L.null stdout then [] else ["━━━━ stdout ━━━━" , stdout]- ++ if L.null stderr then [] else ["━━━━ stderr ━━━━" , stderr]+ ++ (if L.null stdout then [] else ["━━━━ stdout ━━━━" , stdout])+ ++ (if L.null stderr then [] else ["━━━━ stderr ━━━━" , stderr]) IO.ExitSuccess -> return stdout -- | Execute a process, returning the error code, the stdout, and the stderr.