From b04d49a9bd3241a4a22386cfbab48901fd209988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ag=C3=BCero?= Date: Tue, 4 Jun 2024 23:39:26 +0200 Subject: [PATCH] Tweak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Agüero --- src/Node_TEST.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Node_TEST.cc b/src/Node_TEST.cc index b0843926..74528539 100644 --- a/src/Node_TEST.cc +++ b/src/Node_TEST.cc @@ -2037,9 +2037,9 @@ TEST(NodeTest, IgnoreLocalMessages) EXPECT_TRUE(pub); transport::SubscribeOptions opts; - EXPECT_FALSE(opts.IgnoreLocalMessages()) + EXPECT_FALSE(opts.IgnoreLocalMessages()); opts.SetIgnoreLocalMessages(true); - EXPECT_TRUE(opts.IgnoreLocalMessages()) + EXPECT_TRUE(opts.IgnoreLocalMessages()); EXPECT_TRUE(node.Subscribe(g_topic, cb, opts)); // Should be true the first time