Skip to content

Commit

Permalink
Revert "Merge #2378"
Browse files Browse the repository at this point in the history
This reverts commit c12c9cd, reversing
changes made to fc54848.
  • Loading branch information
nfrisby committed Jul 10, 2020
1 parent a49b29a commit cd44958
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -56,7 +56,7 @@ data TestSetup = TestSetup

instance Arbitrary TestSetup where
arbitrary = do
setupD <- (/10) <$> choose (0, 10)
setupD <- (/10) <$> choose (1, 10)
setupK <- SecurityParam <$> elements [5, 10]

setupTestConfig <- arbitrary
Expand All @@ -74,8 +74,7 @@ instance Arbitrary TestSetup where

tests :: TestTree
tests = testGroup "RealTPraos"
[ adjustOption (\(QuickCheckTests n) -> QuickCheckTests $ n `div` 5) $
testProperty "simple convergence" $ \setup ->
[ testProperty "simple convergence" $ withMaxSuccess 20 $ \setup ->
prop_simple_real_tpraos_convergence setup
]

Expand Down

0 comments on commit cd44958

Please sign in to comment.