File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ fn cargo_compile_with_invalid_code() {
570
570
. with_status ( 101 )
571
571
. with_stderr_contains (
572
572
"\
573
- [ERROR] could not compile `foo`.
573
+ [ERROR] could not compile `foo`
574
574
575
575
To learn more, run the command again with --verbose.\n " ,
576
576
)
@@ -4669,7 +4669,7 @@ fn signal_display() {
4669
4669
"\
4670
4670
[COMPILING] pm [..]
4671
4671
[COMPILING] foo [..]
4672
- [ERROR] could not compile `foo`.
4672
+ [ERROR] could not compile `foo`
4673
4673
4674
4674
Caused by:
4675
4675
process didn't exit successfully: `rustc [..]` (signal: 6, SIGABRT: process abort signal)
Original file line number Diff line number Diff line change @@ -1069,7 +1069,7 @@ fn build_deps_not_for_normal() {
1069
1069
. with_stderr_contains ( "[..]can't find crate for `aaaaa`[..]" )
1070
1070
. with_stderr_contains (
1071
1071
"\
1072
- [ERROR] could not compile `foo`.
1072
+ [ERROR] could not compile `foo`
1073
1073
1074
1074
Caused by:
1075
1075
process didn't exit successfully: [..]
Original file line number Diff line number Diff line change @@ -692,7 +692,7 @@ fn short_message_format() {
692
692
"\
693
693
src/lib.rs:1:27: error[E0308]: mismatched types
694
694
error: aborting due to previous error
695
- error: could not compile `foo`.
695
+ error: could not compile `foo`
696
696
" ,
697
697
)
698
698
. run ( ) ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ fn do_not_fix_broken_builds() {
25
25
p. cargo ( "fix --allow-no-vcs" )
26
26
. env ( "__CARGO_FIX_YOLO" , "1" )
27
27
. with_status ( 101 )
28
- . with_stderr_contains ( "[ERROR] could not compile `foo`. " )
28
+ . with_stderr_contains ( "[ERROR] could not compile `foo`" )
29
29
. run ( ) ;
30
30
assert ! ( p. read_file( "src/lib.rs" ) . contains( "let mut x = 3;" ) ) ;
31
31
}
Original file line number Diff line number Diff line change @@ -661,7 +661,7 @@ fn compile_failure() {
661
661
found at `[..]target`
662
662
663
663
Caused by:
664
- could not compile `foo`.
664
+ could not compile `foo`
665
665
666
666
To learn more, run the command again with --verbose.
667
667
" ,
You can’t perform that action at this time.
0 commit comments