diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-18 14:25:28 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-18 14:25:28 +0100 |
commit | 7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57 (patch) | |
tree | 398c50f5d2cf6001b31ea8628299b8eb90b2c543 /libsqlitepp/unittests | |
parent | Modern jam lto (diff) | |
download | libdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.tar.bz2 libdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.tar.xz libdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.zip |
Add JT recommended warnings
Diffstat (limited to 'libsqlitepp/unittests')
-rw-r--r-- | libsqlitepp/unittests/testsqlite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsqlitepp/unittests/testsqlite.cpp b/libsqlitepp/unittests/testsqlite.cpp index 81127c8..37f17ce 100644 --- a/libsqlitepp/unittests/testsqlite.cpp +++ b/libsqlitepp/unittests/testsqlite.cpp @@ -16,7 +16,7 @@ public: BOOST_GLOBAL_FIXTURE(StandardMockDatabase); -BOOST_FIXTURE_TEST_SUITE(Core, DB::TestCore); +BOOST_FIXTURE_TEST_SUITE(Core, DB::TestCore) BOOST_AUTO_TEST_CASE(transactions) { @@ -63,4 +63,4 @@ BOOST_AUTO_TEST_CASE(bindAndSelect) BOOST_REQUIRE_EQUAL(1, rows); } -BOOST_AUTO_TEST_SUITE_END(); +BOOST_AUTO_TEST_SUITE_END() |