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