diff options
Diffstat (limited to 'tests/Tests')
-rw-r--r-- | tests/Tests/Arbitrary.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Tests/Arbitrary.hs b/tests/Tests/Arbitrary.hs index 0191fda7b..70809a71a 100644 --- a/tests/Tests/Arbitrary.hs +++ b/tests/Tests/Arbitrary.hs @@ -30,7 +30,7 @@ instance Arbitrary Inline where arbInline :: Int -> Gen Inline arbInline n = frequency $ [ (60, liftM Str realString) , (60, return Space) - , (10, liftM Code realString) + , (10, liftM2 Code arbitrary realString) , (5, return EmDash) , (5, return EnDash) , (5, return Apostrophe) |