diff --git a/tests/compile_fail/args_not_impl_default.stderr b/tests/compile_fail/args_not_impl_default.stderr index 0050ca9..5dfd681 100644 --- a/tests/compile_fail/args_not_impl_default.stderr +++ b/tests/compile_fail/args_not_impl_default.stderr @@ -8,7 +8,7 @@ note: required by a bound in `proptest::arbitrary::Arbitrary::Parameters` --> $CARGO/proptest-1.1.0/src/arbitrary/traits.rs | | type Parameters: Default; - | ^^^^^^^ required by this bound in `proptest::arbitrary::Arbitrary::Parameters` + | ^^^^^^^ required by this bound in `Arbitrary::Parameters` help: consider annotating `TestArgs` with `#[derive(Default)]` | 2 | #[derive(Default)] diff --git a/tests/compile_fail/invalid_strategy.stderr b/tests/compile_fail/invalid_strategy.stderr index e1723d6..877e73a 100644 --- a/tests/compile_fail/invalid_strategy.stderr +++ b/tests/compile_fail/invalid_strategy.stderr @@ -1,11 +1,11 @@ -error[E0271]: type mismatch resolving ` as Strategy>::Value == u8` +error[E0271]: type mismatch resolving ` as Strategy>::Value == u8` --> tests/compile_fail/invalid_strategy.rs:4:16 | 4 | #[strategy(0..10usize)] | ^--------- | | | expected `u8`, found `usize` - | this tail expression is of type `std::ops::Range<_>` + | this tail expression is of type `Range` | note: required by a bound in `_strategy_of_x` --> tests/compile_fail/invalid_strategy.rs:5:8