Formatting
This commit is contained in:
parent
84a0abeb0f
commit
d73ee3dfe7
|
@ -261,7 +261,6 @@ impl Type {
|
||||||
}
|
}
|
||||||
.into(),
|
.into(),
|
||||||
}
|
}
|
||||||
.into(),
|
|
||||||
}
|
}
|
||||||
.into(),
|
.into(),
|
||||||
),
|
),
|
||||||
|
|
|
@ -650,7 +650,7 @@ impl<'comments> Formatter<'comments> {
|
||||||
on_test_failure: &'a OnTestFailure,
|
on_test_failure: &'a OnTestFailure,
|
||||||
) -> Document<'a> {
|
) -> Document<'a> {
|
||||||
// Fn name and args
|
// Fn name and args
|
||||||
let head = "benchmark "
|
let head = "bench "
|
||||||
.to_doc()
|
.to_doc()
|
||||||
.append(name)
|
.append(name)
|
||||||
.append(wrap_args(args.iter().map(|e| (self.fn_arg_via(e), false))))
|
.append(wrap_args(args.iter().map(|e| (self.fn_arg_via(e), false))))
|
||||||
|
|
|
@ -617,7 +617,7 @@ impl Prng {
|
||||||
traces: result.logs(),
|
traces: result.logs(),
|
||||||
uplc_error,
|
uplc_error,
|
||||||
})
|
})
|
||||||
.map(|term| Prng::from_result(term))
|
.map(Prng::from_result)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain a Prng back from a fuzzer execution. As a reminder, fuzzers have the following
|
/// Obtain a Prng back from a fuzzer execution. As a reminder, fuzzers have the following
|
||||||
|
|
Loading…
Reference in New Issue