From 8c1f7e7cbcefa1fe00e9a6f9072e7172e041fccc Mon Sep 17 00:00:00 2001 From: chatlanin Date: Wed, 10 Jul 2024 13:06:57 +0300 Subject: [PATCH] fix test error --- tests/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.cpp b/tests/main.cpp index 7d80ed9..3fb41a9 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -27,7 +27,7 @@ namespace worckspaces auto main(int argc, char* args[]) -> int { trs::http app; - app.init("app_connection", "log_connection"); + app.init("test service", "app_connection", "log_connection"); app.registration("healthcheck", worckspaces::inspector, worckspaces::provider); app.run(); }