File tree 1 file changed +4
-7
lines changed 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -1568,17 +1568,14 @@ fn artifact_dep_target_specified() {
1568
1568
. with_status ( 0 )
1569
1569
. run ( ) ;
1570
1570
1571
- // TODO: This command currently fails due to a bug in cargo but it should be fixed so that it succeeds in the future.
1572
1571
p. cargo ( "tree -Z bindeps" )
1573
1572
. masquerade_as_nightly_cargo ( & [ "bindeps" ] )
1574
- . with_stdout_data ( str![ [ "" ] ] )
1575
- . with_stderr_data ( str![ [ r#"
1576
- thread 'main' panicked at src/cargo/[..]:
1577
- activated_features for invalid package: features did not find PackageId { name: "bindep", version: "0.0.0", source: "[..]" } NormalOrDev
1578
- [NOTE] run with `RUST_BACKTRACE=1` environment variable to display a backtrace
1573
+ . with_stdout_data ( str![ [ r#"
1574
+ foo v0.0.0 ([ROOT]/foo)
1575
+ └── bindep v0.0.0 ([ROOT]/foo/bindep)
1579
1576
1580
1577
"# ] ] )
1581
- . with_status ( 101 )
1578
+ . with_status ( 0 )
1582
1579
. run ( ) ;
1583
1580
}
1584
1581
You can’t perform that action at this time.
0 commit comments