Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a committed Aug 29, 2024
1 parent 2432d98 commit 7da588a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,13 @@ mod tests {
.unwrap();
let mut conn = connection_pool.acquire().await.unwrap();

conn.revert(&down_migration).await.unwrap();
conn.revert(down_migration).await.unwrap();

run_migrations(&connection_pool, true, false)
.await
.unwrap_err();

conn.apply(&up_migration).await.unwrap();
conn.apply(up_migration).await.unwrap();
}

{
Expand Down

0 comments on commit 7da588a

Please sign in to comment.