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

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


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

commit 6db2521f821e513ca5cce10f30f77409e675b3f6
Author: Benjamin Mahler <bmah...@apache.org>
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 41b4a49..cd0973e 100644
--- a/src/tests/master_tests.cpp
+++ b/src/tests/master_tests.cpp
@@ -7776,7 +7776,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