Skip to content

Commit a875816

Browse files
committed
time to investigate the bug
1 parent e6078b4 commit a875816

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/testsuite/resolve.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ fn resolving_with_constrained_sibling_transitive_dep_effects() {
965965

966966
#[test]
967967
fn dont_yet_know_the_problem() {
968-
// WIP minimized bug found in:
968+
// minimized bug found in:
969969
// https://github.com/rust-lang/cargo/commit/003c29b0c71e5ea28fbe8e72c148c755c9f3f8d9
970970
let input = vec![
971971
pkg!(("a", "1.0.0")),
@@ -1004,8 +1004,7 @@ fn dont_yet_know_the_problem() {
10041004
);
10051005
assert_eq!(input.len(), new_reg.len() + 1);
10061006
// it should still build
1007-
// TODO: uncomment when minimized: assert!(resolve(&pkg_id("root"), vec![dep("g")], &new_reg).is_ok());
1008-
assert!(resolve(&pkg_id("root"), vec![dep("g")], &new_reg).is_err());
1007+
assert!(resolve(&pkg_id("root"), vec![dep("g")], &new_reg).is_ok());
10091008
}
10101009

10111010
#[test]

0 commit comments

Comments
 (0)