We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f189581 commit e8ad597Copy full SHA for e8ad597
tests/testsuite/git.rs
@@ -3881,9 +3881,11 @@ fn _corrupted_checkout(with_cli: bool) {
3881
));
3882
let dep1_co_path = dep1_co_paths.next().unwrap().unwrap();
3883
let dep1_ok = dep1_co_path.join(".cargo-ok");
3884
+ let dep1_manifest = dep1_co_path.join("Cargo.toml");
3885
3886
// Deleting this file simulates an interrupted checkout.
3887
t!(fs::remove_file(&dep1_ok));
3888
+ t!(fs::remove_file(&dep1_manifest));
3889
3890
// This should refresh the checkout.
3891
let mut e = p.cargo("fetch");
@@ -3892,6 +3894,7 @@ fn _corrupted_checkout(with_cli: bool) {
3892
3894
}
3893
3895
e.run();
3896
assert!(dep1_ok.exists());
3897
+ assert!(dep1_manifest.exists());
3898
3899
3900
#[cargo_test]
0 commit comments