File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -692,7 +692,7 @@ fn many_cli_features() {
692
692
. build ( ) ;
693
693
694
694
assert_that (
695
- p. cargo ( "build --features bar baz" ) ,
695
+ p. cargo ( "build --features" ) . arg ( " bar baz") ,
696
696
execs ( ) . with_stderr ( format ! (
697
697
"\
698
698
[COMPILING] ba[..] v0.0.1 ({dir}/ba[..])
@@ -1394,7 +1394,7 @@ fn many_cli_features_comma_and_space_delimited() {
1394
1394
. build ( ) ;
1395
1395
1396
1396
assert_that (
1397
- p. cargo ( "build --features bar,baz bam bap" ) ,
1397
+ p. cargo ( "build --features" ) . arg ( " bar,baz bam bap") ,
1398
1398
execs ( ) . with_stderr ( format ! (
1399
1399
"\
1400
1400
[COMPILING] ba[..] v0.0.1 ({dir}/ba[..])
Original file line number Diff line number Diff line change @@ -980,7 +980,7 @@ fn multiple_features() {
980
980
. build ( ) ;
981
981
982
982
assert_that (
983
- p. cargo ( "metadata --features a b" ) ,
983
+ p. cargo ( "metadata --features" ) . arg ( " a b") ,
984
984
execs ( ) ,
985
985
) ;
986
986
}
You can’t perform that action at this time.
0 commit comments