diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/database.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/database.cpp b/tests/database.cpp index 7ab6da8..88b4834 100644 --- a/tests/database.cpp +++ b/tests/database.cpp @@ -56,13 +56,13 @@ TEST_CASE("Database") CHECK(o.col<Database::EncodingIn>() == ""); o.col<Database::EncodingIn>() = "ISO-8859-1"; - CHECK(o.col<Database::RecordHistoryOptional>().is_set == false); - o.col<Database::RecordHistoryOptional>().set_value(false); + CHECK(!o.col<Database::RecordHistoryOptional>()); + o.col<Database::RecordHistoryOptional>() = false; o.save(Database::db); auto b = Database::get_irc_channel_options("zouzou@example.com", "irc.example.com", "#foo"); CHECK(o.col<Database::EncodingIn>() == "ISO-8859-1"); - CHECK(o.col<Database::RecordHistoryOptional>().is_set == true); - CHECK(o.col<Database::RecordHistoryOptional>().value == false); + CHECK(o.col<Database::RecordHistoryOptional>()); + CHECK(*o.col<Database::RecordHistoryOptional>() == false); } SECTION("Channel options with server default") |