From 2b860356ede3152147978124b9f9c0088d605ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93mar=20H=C3=B6gni=20Gu=C3=B0marsson?= Date: Thu, 27 Jun 2024 12:36:06 +0000 Subject: [PATCH] Integration tests compiling after rebase --- exes/themis/tests/themis_integration_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exes/themis/tests/themis_integration_test.cpp b/exes/themis/tests/themis_integration_test.cpp index 62488d2bb9..56f4dfd3e2 100644 --- a/exes/themis/tests/themis_integration_test.cpp +++ b/exes/themis/tests/themis_integration_test.cpp @@ -369,7 +369,7 @@ int main(int argc, char** argv) { test_setup_s s; auto vec = s.db.list_alarms(); auto json = glz::write_json(vec); - expect(json == "[]") << json; + expect(json == "[]") << json.value_or(""); }; return 0; }