From fe21ee9656f06ce6b28e5c470563cbd4f4f77332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Tue, 20 Feb 2024 21:57:26 +0100 Subject: [PATCH] fix(tests): fix intermittently failing integration tests (#412) --- tests/integrationtests/DBusGeneralTests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integrationtests/DBusGeneralTests.cpp b/tests/integrationtests/DBusGeneralTests.cpp index 0e5b356..1164f6c 100644 --- a/tests/integrationtests/DBusGeneralTests.cpp +++ b/tests/integrationtests/DBusGeneralTests.cpp @@ -58,6 +58,8 @@ TEST(AdaptorAndProxy, CanBeConstructedSuccesfully) ASSERT_NO_THROW(TestAdaptor adaptor(*connection, OBJECT_PATH)); ASSERT_NO_THROW(TestProxy proxy(BUS_NAME, OBJECT_PATH)); + + connection->releaseName(BUS_NAME); } TEST(AProxy, SupportsMoveSemantics)