Skip to content

Commit 1228d24

Browse files
authored
sqlx-mysql: Fix bug in cleanup test db's. (#3923)
1 parent e627673 commit 1228d24

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sqlx-mysql/src/testing/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ impl TestSupport for MySql {
5656
for db_name in &delete_db_names {
5757
command.clear();
5858

59-
let db_name = format!("_sqlx_test_database_{db_name}");
60-
6159
writeln!(command, "drop database if exists {db_name};").ok();
6260
match conn.execute(&*command).await {
6361
Ok(_deleted) => {

0 commit comments

Comments
 (0)