@@ -37,7 +37,7 @@ proptest! {
37
37
38
38
/// NOTE: if you think this test has failed spuriously see the note at the top of this macro.
39
39
#[ test]
40
- fn passes_validation (
40
+ fn prop_passes_validation (
41
41
PrettyPrintRegistry ( input) in registry_strategy( 50 , 20 , 60 )
42
42
) {
43
43
let reg = registry( input. clone( ) ) ;
@@ -55,7 +55,7 @@ proptest! {
55
55
56
56
/// NOTE: if you think this test has failed spuriously see the note at the top of this macro.
57
57
#[ test]
58
- fn minimum_version_errors_the_same (
58
+ fn prop_minimum_version_errors_the_same (
59
59
PrettyPrintRegistry ( input) in registry_strategy( 50 , 20 , 60 )
60
60
) {
61
61
enable_nightly_features( ) ;
@@ -105,7 +105,7 @@ proptest! {
105
105
106
106
/// NOTE: if you think this test has failed spuriously see the note at the top of this macro.
107
107
#[ test]
108
- fn removing_a_dep_cant_break (
108
+ fn prop_removing_a_dep_cant_break (
109
109
PrettyPrintRegistry ( input) in registry_strategy( 50 , 20 , 60 ) ,
110
110
indexes_to_remove in prop:: collection:: vec( ( any:: <prop:: sample:: Index >( ) , any:: <prop:: sample:: Index >( ) ) , ..10 )
111
111
) {
@@ -147,7 +147,7 @@ proptest! {
147
147
148
148
/// NOTE: if you think this test has failed spuriously see the note at the top of this macro.
149
149
#[ test]
150
- fn limited_independence_of_irrelevant_alternatives (
150
+ fn prop_limited_independence_of_irrelevant_alternatives (
151
151
PrettyPrintRegistry ( input) in registry_strategy( 50 , 20 , 60 ) ,
152
152
indexes_to_unpublish in prop:: collection:: vec( any:: <prop:: sample:: Index >( ) , ..10 )
153
153
) {
0 commit comments