File tree 1 file changed +0
-5
lines changed 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -65,13 +65,11 @@ fn virtual_no_default_features() {
65
65
. run ( ) ;
66
66
67
67
p. cargo ( "check --features foo" )
68
- . masquerade_as_nightly_cargo ( )
69
68
. with_status ( 101 )
70
69
. with_stderr ( "[ERROR] none of the selected packages contains these features: foo" )
71
70
. run ( ) ;
72
71
73
72
p. cargo ( "check --features a/dep1,b/f1,b/f2,f2" )
74
- . masquerade_as_nightly_cargo ( )
75
73
. with_status ( 101 )
76
74
. with_stderr ( "[ERROR] none of the selected packages contains these features: b/f2, f2" )
77
75
. run ( ) ;
@@ -299,19 +297,16 @@ fn feature_default_resolver() {
299
297
. build ( ) ;
300
298
301
299
p. cargo ( "check --features testt" )
302
- . masquerade_as_nightly_cargo ( )
303
300
. with_status ( 101 )
304
301
. with_stderr ( "[ERROR] Package `a[..]` does not have the feature `testt`" )
305
302
. run ( ) ;
306
303
307
304
p. cargo ( "run --features test" )
308
- . masquerade_as_nightly_cargo ( )
309
305
. with_status ( 0 )
310
306
. with_stdout ( "feature set" )
311
307
. run ( ) ;
312
308
313
309
p. cargo ( "run --features a/test" )
314
- . masquerade_as_nightly_cargo ( )
315
310
. with_status ( 101 )
316
311
. with_stderr ( "[ERROR] package `a[..]` does not have a dependency named `a`" )
317
312
. run ( ) ;
You can’t perform that action at this time.
0 commit comments