@@ -13,7 +13,7 @@ fn alias_incorrect_config_type() {
13
13
. file ( ".cargo/config" , r#"
14
14
[alias]
15
15
b-cargo-test = 5
16
- "# ) ; ;
16
+ "# ) ;
17
17
18
18
assert_that ( p. cargo_process ( "b-cargo-test" ) . arg ( "-v" ) ,
19
19
execs ( ) . with_status ( 101 ) .
@@ -33,7 +33,7 @@ fn alias_default_config_overrides_config() {
33
33
. file ( ".cargo/config" , r#"
34
34
[alias]
35
35
b = "not_build"
36
- "# ) ; ;
36
+ "# ) ;
37
37
38
38
assert_that ( p. cargo_process ( "b" ) . arg ( "-v" ) ,
39
39
execs ( ) . with_status ( 0 ) .
@@ -50,7 +50,7 @@ fn alias_config() {
50
50
. file ( ".cargo/config" , r#"
51
51
[alias]
52
52
b-cargo-test = "build"
53
- "# ) ; ;
53
+ "# ) ;
54
54
55
55
assert_that ( p. cargo_process ( "b-cargo-test" ) . arg ( "-v" ) ,
56
56
execs ( ) . with_status ( 0 ) .
@@ -68,7 +68,7 @@ fn alias_list_test() {
68
68
. file ( ".cargo/config" , r#"
69
69
[alias]
70
70
b-cargo-test = ["build", "--release"]
71
- "# ) ; ;
71
+ "# ) ;
72
72
73
73
assert_that ( p. cargo_process ( "b-cargo-test" ) . arg ( "-v" ) ,
74
74
execs ( ) . with_status ( 0 ) .
@@ -87,7 +87,7 @@ fn alias_with_flags_config() {
87
87
. file ( ".cargo/config" , r#"
88
88
[alias]
89
89
b-cargo-test = "build --release"
90
- "# ) ; ;
90
+ "# ) ;
91
91
92
92
assert_that ( p. cargo_process ( "b-cargo-test" ) . arg ( "-v" ) ,
93
93
execs ( ) . with_status ( 0 ) .
@@ -106,7 +106,7 @@ fn cant_shadow_builtin() {
106
106
. file ( ".cargo/config" , r#"
107
107
[alias]
108
108
build = "fetch"
109
- "# ) ; ;
109
+ "# ) ;
110
110
111
111
assert_that ( p. cargo_process ( "build" ) ,
112
112
execs ( ) . with_status ( 0 )
0 commit comments