We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f80cede commit 2e2b5b1Copy full SHA for 2e2b5b1
crates/kitsune-test/src/lib.rs
@@ -44,12 +44,17 @@ where
44
diesel::sql_query("DROP SCHEMA public CASCADE")
45
.execute(db_conn)
46
.await
47
- .expect("Failed to delete schema");
+ .expect("Failed to delete \"public\" schema");
48
+
49
+ diesel::sql_query("DROP SCHEMA kitsune CASCADE")
50
+ .execute(db_conn)
51
+ .await
52
+ .expect("Failed to delete \"kitsune\" schema");
53
54
diesel::sql_query("CREATE SCHEMA public")
55
56
- .expect("Failed to create schema");
57
+ .expect("Failed to create \"public\" schema");
58
59
Ok::<_, BoxError>(())
60
}
0 commit comments