Skip to content

Commit 93150fd

Browse files
committed
Fix the CI
Caused by the release of url 2.1.1 See servo/rust-url#579 for details
1 parent f5b15e5 commit 93150fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

diesel_cli/tests/support/project_builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl Project {
102102

103103
let mut db_url =
104104
url::Url::parse(&env::var_os(var).unwrap().into_string().unwrap()).unwrap();
105-
db_url.set_path(&format!("diesel_{}", &self.name));
105+
db_url.set_path(&format!("/diesel_{}", &self.name));
106106
db_url
107107
}
108108

0 commit comments

Comments
 (0)