This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch 1.8.x
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/1.8.x by this push:
new 644b7c3 Fixed a compilation issue on GCC 5.5 and older.
644b7c3 is described below
commit 644b7c3204c94862b1155b02f55c46bcf02dbcd0
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 cedbb2b..8758ede 100644
--- a/src/tests/master_tests.cpp
+++ b/src/tests/master_tests.cpp
@@ -7747,7 +7747,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(_));