Skip to content

Commit 942c389

Browse files
committed
update snapshots
1 parent 4ff3ea0 commit 942c389

2 files changed

+3
-1
lines changed

proptest-macro/src/property_test/tests/snapshots/proptest_macro__property_test__tests__snapshot_tests__custom_strategy.snap

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ fn foo() {
1616
use ::proptest::strategy::Strategy;
1717
(123, a + more()("complex") - expression!())
1818
.prop_map(|(field0, field1)| Self { field0, field1 })
19+
.boxed()
1920
}
2021
}
2122
let config = ::proptest::test_runner::Config {

proptest-macro/src/property_test/tests/snapshots/proptest_macro__property_test__tests__snapshot_tests__mix_custom_and_default_strategies.snap

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ fn foo() {
1414
type Strategy = ::proptest::strategy::BoxedStrategy<Self>;
1515
fn arbitrary_with((): Self::Parameters) -> Self::Strategy {
1616
use ::proptest::strategy::Strategy;
17-
(::proptest::prelude::any::<i32>, a + more()("complex") - expression!())
17+
(::proptest::prelude::any::<i32>(), a + more()("complex") - expression!())
1818
.prop_map(|(field0, field1)| Self { field0, field1 })
19+
.boxed()
1920
}
2021
}
2122
let config = ::proptest::test_runner::Config {

0 commit comments

Comments
 (0)