This is an automated email from the ASF dual-hosted git repository.

bmahler pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/1.9.x by this push:
     new 911b197  Fixed a compilation issue on GCC 5.5 and older.
911b197 is described below

commit 911b197735dd8e52262426eb5a2dd8df34297941
Author: Benjamin Mahler <[email protected]>
AuthorDate: Fri Sep 11 13:00:49 2020 -0400

    Fixed a compilation issue on GCC 5.5 and older.
---
 src/tests/master_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/master_tests.cpp b/src/tests/master_tests.cpp
index 91a8a4b..8c36d50 100644
--- a/src/tests/master_tests.cpp
+++ b/src/tests/master_tests.cpp
@@ -7753,7 +7753,7 @@ TEST_F(MasterTest, 
NonCheckpointingFrameworkAgentDisconnectionExecutorOnly)
     const v1::master::Response::GetAgents::Agent& agent =
       response->get_agents().agents(0);
 
-    EXPECT_EQ(false, agent.active());
+    EXPECT_FALSE(agent.active());
   }
 
   EXPECT_CALL(exec, shutdown(_));

Reply via email to