File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ fn bad_progress_config_unknown_when() {
16
16
. file ( "src/lib.rs" , "" )
17
17
. build ( ) ;
18
18
19
- p. cargo ( "build " )
19
+ p. cargo ( "check " )
20
20
. with_status ( 101 )
21
21
. with_stderr (
22
22
"\
@@ -43,7 +43,7 @@ fn bad_progress_config_missing_width() {
43
43
. file ( "src/lib.rs" , "" )
44
44
. build ( ) ;
45
45
46
- p. cargo ( "build " )
46
+ p. cargo ( "check " )
47
47
. with_status ( 101 )
48
48
. with_stderr (
49
49
"\
@@ -66,7 +66,7 @@ fn bad_progress_config_missing_when() {
66
66
. file ( "src/lib.rs" , "" )
67
67
. build ( ) ;
68
68
69
- p. cargo ( "build " )
69
+ p. cargo ( "check " )
70
70
. with_status ( 101 )
71
71
. with_stderr (
72
72
"\
@@ -110,7 +110,7 @@ fn always_shows_progress() {
110
110
. file ( "src/lib.rs" , "" )
111
111
. build ( ) ;
112
112
113
- p. cargo ( "build " )
113
+ p. cargo ( "check " )
114
114
. with_stderr_contains ( "[DOWNLOADING] [..] crates [..]" )
115
115
. with_stderr_contains ( "[..][DOWNLOADED] 3 crates ([..]) in [..]" )
116
116
. with_stderr_contains ( "[BUILDING] [..] [..]/4: [..]" )
@@ -151,7 +151,7 @@ fn never_progress() {
151
151
. file ( "src/lib.rs" , "" )
152
152
. build ( ) ;
153
153
154
- p. cargo ( "build " )
154
+ p. cargo ( "check " )
155
155
. with_stderr_does_not_contain ( "[DOWNLOADING] [..] crates [..]" )
156
156
. with_stderr_does_not_contain ( "[..][DOWNLOADED] 3 crates ([..]) in [..]" )
157
157
. with_stderr_does_not_contain ( "[BUILDING] [..] [..]/4: [..]" )
You can’t perform that action at this time.
0 commit comments