[Unit Test] SQLite mini-ORM unit tests and cleanup #14
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2024-10-02 15:16:21 -05:00
parent ef270887fc
commit 67ac6a6c6e

View File

@ -114,7 +114,7 @@ static void common_delete(sqlite3 &db, bool dump = false) {
}
{
auto query = db::db_select{*db, "table"};
auto query = db::db_select{db, "table"};
auto res = query.go();
EXPECT_TRUE(res.ok());