Skip to content

Commit

Permalink
Fix the CI
Browse files Browse the repository at this point in the history
Caused by the release of url 2.1.1
See servo/rust-url#579 for details
  • Loading branch information
weiznich committed Jan 14, 2020
1 parent f5b15e5 commit 93150fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel_cli/tests/support/project_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl Project {

let mut db_url =
url::Url::parse(&env::var_os(var).unwrap().into_string().unwrap()).unwrap();
db_url.set_path(&format!("diesel_{}", &self.name));
db_url.set_path(&format!("/diesel_{}", &self.name));
db_url
}

Expand Down

0 comments on commit 93150fd

Please sign in to comment.