Fix missing test run call

This commit is contained in:
fabianlindfors 2022-06-30 17:17:50 +02:00
parent 8b6c817b30
commit 57160e14b3

View File

@ -39,4 +39,6 @@ fn remove_table() {
// Ensure the table is not accessible through the new schema // Ensure the table is not accessible through the new schema
assert!(new_db.query("SELECT id FROM users", &[]).is_err()); assert!(new_db.query("SELECT id FROM users", &[]).is_err());
}); });
test.run();
} }