summaryrefslogtreecommitdiff
path: root/Command/FuzzTest.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/FuzzTest.hs')
-rw-r--r--Command/FuzzTest.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/FuzzTest.hs b/Command/FuzzTest.hs
index d038c82d3..bda2372a8 100644
--- a/Command/FuzzTest.hs
+++ b/Command/FuzzTest.hs
@@ -151,8 +151,8 @@ data FuzzAction
instance Arbitrary FuzzAction where
arbitrary = frequency
- [ (100, FuzzAdd <$> arbitrary)
- , (10, FuzzDelete <$> arbitrary)
+ [ (50, FuzzAdd <$> arbitrary)
+ , (50, FuzzDelete <$> arbitrary)
, (10, FuzzMove <$> arbitrary <*> arbitrary)
, (10, FuzzModify <$> arbitrary)
, (10, FuzzDeleteDir <$> arbitrary)