Skip to content

Commit 74cbf67

Browse files
committed
test: silence -Wunused-result on discarded GetMembership call
1 parent 35fb2ae commit 74cbf67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/server-sdk/tests/big_segment_store_wrapper_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ TEST(BigSegmentStoreWrapperMembershipTest,
307307
EXPECT_FALSE(wrapper->GetStatus().available);
308308

309309
// The error was not cached, so the next lookup queries the store again.
310-
wrapper->GetMembership("ctx");
310+
(void)wrapper->GetMembership("ctx");
311311
EXPECT_EQ(2, store->MembershipCalls());
312312
}
313313

0 commit comments

Comments
 (0)