hedgehog-extras 0.4.0.0 → 0.4.0.1
raw patch · 2 files changed
+3/−3 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.4.0.0+version: 0.4.0.1 synopsis: Supplemental library for hedgehog description: Supplemental library for hedgehog. category: Test
src/Hedgehog/Extras/Test/Base.hs view
@@ -500,10 +500,10 @@ case result of Right a -> return a Left assertion -> do- if i >= n+ if i < n then go (i + 1) else do- note_ $ "All " <> show (n + 1) <> " attempts failed"+ note_ $ "All " <> show n <> " attempts failed" H.throwAssertion assertion retry' :: forall a. Int -> Integration a -> Integration a