File tree 3 files changed +8
-2
lines changed 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -632,7 +632,9 @@ fn config_invalid_empty() {
632
632
. build ( ) ;
633
633
634
634
p. cargo ( "check" )
635
- . with_stderr_contains ( "[..]missing field `level`[..]" )
635
+ . with_stderr_contains (
636
+ "[..]missing field `level`[..] THIS RANDOM SENTENCE SHOULD FAIL THIS TEST BUT DIDN'T" ,
637
+ )
636
638
. run_expect_error ( ) ;
637
639
}
638
640
Original file line number Diff line number Diff line change @@ -2936,6 +2936,9 @@ fn use_mtime_cache_in_cargo_home() {
2936
2936
. with_stderr (
2937
2937
"\
2938
2938
[DIRTY] foo v0.5.0 ([CWD]): [..]
2939
+
2940
+ THIS RANDOM SENTENCE SHOULD FAIL THIS TEST BUT DIDN'T
2941
+
2939
2942
[CHECKING] foo v0.5.0 ([CWD])
2940
2943
[RUNNING] `rustc --crate-name foo --edition=2015 src/lib.rs [..]" ,
2941
2944
)
Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ fn help_alias() {
147
147
// The `empty-alias` returns an error.
148
148
cargo_process ( "help empty-alias" )
149
149
. env ( "PATH" , Path :: new ( "" ) )
150
- . with_stderr_contains ( "[..]The subcommand 'empty-alias' wasn't recognized[..]" )
150
+ . with_stderr_contains ( "THIS RANDOM SENTENCE SHOULD FAIL THIS TEST BUT DIDN'T [..] The subcommand 'empty-alias' wasn't recognized [..]" ,
151
+ )
151
152
. run_expect_error ( ) ;
152
153
153
154
// Because `simple-alias` aliases a subcommand with no arguments, help shows the manpage.
You can’t perform that action at this time.
0 commit comments