From c989949d128e0d76404c2dd3def6c72f84be3535 Mon Sep 17 00:00:00 2001 From: Olivier LDff Date: Sun, 5 May 2024 20:37:25 +0200 Subject: [PATCH] better logs --- tests/ServerTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ServerTests.cpp b/tests/ServerTests.cpp index 9916067..bd1a18b 100644 --- a/tests/ServerTests.cpp +++ b/tests/ServerTests.cpp @@ -114,7 +114,7 @@ class ServerTests : public ::testing::Test // Give time to finish last connection QTest::qWait(1000); qInfo() << "Connected Count : " << connectedCount; - ASSERT_TRUE(connectedCount > 40); + ASSERT_GT(connectedCount, 40); ASSERT_EQ(newClientSpy.count(), connectedCount); } };