File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ fn test_bad_config_duplicate_crate() {
21
21
. assert ( )
22
22
. failure ( )
23
23
. code ( 1 )
24
- . stdout ( contains ( "duplicate key: `lazy_static` for key `crates`" ) ) ;
24
+ . stderr ( contains ( "duplicate key: `lazy_static` for key `crates`" ) ) ;
25
25
}
26
26
27
27
#[ test]
@@ -31,7 +31,7 @@ fn test_bad_config_duplicate_repo() {
31
31
. assert ( )
32
32
. failure ( )
33
33
. code ( 1 )
34
- . stdout ( contains (
34
+ . stderr ( contains (
35
35
"duplicate key: `brson/hello-rs` for key `github-repos`" ,
36
36
) ) ;
37
37
}
@@ -43,7 +43,7 @@ fn test_bad_config_missing_crate() {
43
43
. assert ( )
44
44
. failure ( )
45
45
. code ( 1 )
46
- . stdout ( contains ( "crate `crater_missing_crate` is not available" ) ) ;
46
+ . stderr ( contains ( "crate `crater_missing_crate` is not available" ) ) ;
47
47
}
48
48
49
49
#[ test]
@@ -53,5 +53,5 @@ fn test_bad_config_missing_repo() {
53
53
. assert ( )
54
54
. failure ( )
55
55
. code ( 1 )
56
- . stdout ( contains ( "GitHub repo `ghost/missing-repo` is missing" ) ) ;
56
+ . stderr ( contains ( "GitHub repo `ghost/missing-repo` is missing" ) ) ;
57
57
}
You can’t perform that action at this time.
0 commit comments