style: clang-tidy auto fixes (#2112)

Fixes #2111. Please review and commit clang-tidy fixes.

Co-authored-by: godexsoft <385326+godexsoft@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-05-14 11:28:40 +01:00
committed by GitHub
parent 2d52966806
commit a369381594
6 changed files with 9 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ using namespace util;
TEST(StringHashTest, HashesConsistently)
{
StringHash hasher;
StringHash const hasher;
std::string const stdString = "test string";
std::string_view const strView = "test string";
@@ -43,7 +43,7 @@ TEST(StringHashTest, HashesConsistently)
TEST(StringHashTest, TransparentLookup)
{
std::unordered_set<std::string, StringHash, std::equal_to<>> stringSet{"hello world"};
std::unordered_set<std::string, StringHash, std::equal_to<>> const stringSet{"hello world"};
std::string const stdString = "hello world";
std::string_view const strView = "hello world";
@@ -58,7 +58,7 @@ TEST(StringHashTest, TransparentLookup)
TEST(StringHashTest, EmptyStrings)
{
StringHash hasher;
StringHash const hasher;
std::string const emptyStdString;
std::string_view const emptyStrView;

View File

@@ -28,7 +28,7 @@ struct RpcNameConstraintTest : testing::Test {};
TEST_F(RpcNameConstraintTest, WrongType)
{
Value value{1};
Value const value{1};
auto const maybeError = gRpcNameConstraint.checkConstraint(value);
ASSERT_TRUE(maybeError.has_value());
EXPECT_EQ(maybeError->error, "RPC command name must be a string");
@@ -36,7 +36,7 @@ TEST_F(RpcNameConstraintTest, WrongType)
TEST_F(RpcNameConstraintTest, WrongValue)
{
Value value{"non_existing_rpc"};
Value const value{"non_existing_rpc"};
auto const maybeError = gRpcNameConstraint.checkConstraint(value);
ASSERT_TRUE(maybeError.has_value());
EXPECT_EQ(maybeError->error, "Invalid RPC command name");
@@ -44,7 +44,7 @@ TEST_F(RpcNameConstraintTest, WrongValue)
TEST_F(RpcNameConstraintTest, CorrectValue)
{
Value value{"server_info"};
Value const value{"server_info"};
auto const maybeError = gRpcNameConstraint.checkConstraint(value);
ASSERT_FALSE(maybeError.has_value());
}