We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f73ef commit 60fad8dCopy full SHA for 60fad8d
src/Hedgehog.Xunit/InternalLogic.fs
@@ -213,12 +213,11 @@ module private PropertyBuilder =
213
| e -> box e
214
215
let createJournal args =
216
- let parameterEntries =
217
- Array.zip parameters (List.toArray args)
218
- |> Array.map (fun (param, value) ->
219
- fun () -> TestParameter (param.Name, value))
220
- |> Array.toSeq
221
- Journal.ofSeq parameterEntries
+ args
+ |> Seq.zip parameters
+ |> Seq.map (fun (param, value) -> fun () -> TestParameter (param.Name, value))
+ |> Array.ofSeq // not sure if journal will do multiple enumerations
+ |> Journal.ofSeq
222
223
let wrapWithExceptionHandling (result: obj) : Property<unit> =
224
match result with
0 commit comments