From 0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 16 Aug 2025 16:29:06 +0100 Subject: Fix-up all the clang-tidy warnings --- unittests/mockDefs.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'unittests/mockDefs.cpp') diff --git a/unittests/mockDefs.cpp b/unittests/mockDefs.cpp index a144575..7856c2d 100644 --- a/unittests/mockDefs.cpp +++ b/unittests/mockDefs.cpp @@ -4,7 +4,6 @@ #include #include #include -#include #include #include #include @@ -24,13 +23,13 @@ GitFS::Test::Service::Service() : GitFS::Test::Client::Client() : s(getProxy("Service")) { BOOST_TEST_REQUIRE(s); - s->ice_ping(); + BOOST_CHECK_NO_THROW(s->ice_ping()); } GitFS::Test::VolumeClient::VolumeClient() : v(s->connect("testrepo", "testauth")) { BOOST_TEST_REQUIRE(v); - v->ice_ping(); + BOOST_CHECK_NO_THROW(v->ice_ping()); } GitFS::Test::VolumeClient::~VolumeClient() -- cgit v1.2.3