From e56bffff4d7fc3f93c4385e59649a5e82d58be4b Mon Sep 17 00:00:00 2001 From: rakshasa Date: Wed, 5 Aug 2026 10:50:05 +0200 Subject: [PATCH] Fixed socket category unit test. --- test/src/test_command_local.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_command_local.cc b/test/src/test_command_local.cc index 46b15e21..bde49046 100644 --- a/test/src/test_command_local.cc +++ b/test/src/test_command_local.cc @@ -45,8 +45,8 @@ TestCommandLocal::test_socket_category_commands() { CPPUNIT_ASSERT(rpc::commands.has(name + ".size")); CPPUNIT_ASSERT(rpc::commands.has(name + ".max_size")); + CPPUNIT_ASSERT(rpc::commands.has(name + ".min_alloc")); - CPPUNIT_ASSERT_EQUAL(has_allocation, rpc::commands.has(name + ".min_alloc")); CPPUNIT_ASSERT_EQUAL(has_allocation, rpc::commands.has(name + ".max_alloc")); CPPUNIT_ASSERT_EQUAL(has_allocation, rpc::commands.has(name + ".min_alloc.set")); CPPUNIT_ASSERT_EQUAL(has_allocation, rpc::commands.has(name + ".max_alloc.set"));