Skip to content

Commit

Permalink
Use three slashes after the file: scheme,
Browse files Browse the repository at this point in the history
This is a small breaking change in cargo, because they no longer try to
normalize urls: rust-lang/cargo#7238
  • Loading branch information
Veetaha committed Aug 1, 2020
1 parent 0358979 commit d215b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/basics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ fn it_loads_a_submodule() {
.init_git()
.build();

let submodule_url = "file://".to_string() + submodule.path().to_str().unwrap();
let submodule_url = "file:///".to_string() + submodule.path().to_str().unwrap();
let template = dir("template")
.file(
"Cargo.toml",
Expand Down

0 comments on commit d215b0a

Please sign in to comment.