Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron1024 committed Jul 12, 2024
1 parent 4ff3ea0 commit 942c389
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ fn foo() {
use ::proptest::strategy::Strategy;
(123, a + more()("complex") - expression!())
.prop_map(|(field0, field1)| Self { field0, field1 })
.boxed()
}
}
let config = ::proptest::test_runner::Config {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ fn foo() {
type Strategy = ::proptest::strategy::BoxedStrategy<Self>;
fn arbitrary_with((): Self::Parameters) -> Self::Strategy {
use ::proptest::strategy::Strategy;
(::proptest::prelude::any::<i32>, a + more()("complex") - expression!())
(::proptest::prelude::any::<i32>(), a + more()("complex") - expression!())
.prop_map(|(field0, field1)| Self { field0, field1 })
.boxed()
}
}
let config = ::proptest::test_runner::Config {
Expand Down

0 comments on commit 942c389

Please sign in to comment.