cargo fmt

This commit is contained in:
Felix Ableitner 2020-12-11 15:45:29 +01:00
parent cbe5cf8ca0
commit a56db9a47c
1 changed files with 2 additions and 1 deletions

View File

@ -231,7 +231,8 @@ mod tests {
e
),
};
let conn = PgConnection::establish(&db_url).unwrap_or_else(|_| panic!("Error connecting to {}", db_url));
let conn =
PgConnection::establish(&db_url).unwrap_or_else(|_| panic!("Error connecting to {}", db_url));
embedded_migrations::run(&conn).unwrap();
conn
}