Skip to content

Commit

Permalink
Use FsCheck to generate a char[] instead of a seq<char>. Fixes #20.
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-pappas committed Nov 7, 2015
1 parent 9238426 commit b5a9e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reggie.Tests/TestSetup.fs
Expand Up @@ -39,7 +39,7 @@ type CharSetGenerator =
/// Generates an arbitrary CharSet instance.
static member CharSet () : Arbitrary<CharSet> =
gen {
let! chars = Arb.generate
let! chars = Arb.generate<char[]>
return CharSet.ofSeq chars
} |> Arb.fromGen

Expand Down

0 comments on commit b5a9e69

Please sign in to comment.