Repository: mesos
Updated Branches:
  refs/heads/master 3ea2540b0 -> 1b593db33


Fixed comparison between signed and unsigned.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1b593db3
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1b593db3
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/1b593db3

Branch: refs/heads/master
Commit: 1b593db331cfd991a613616c21de42d3e0c62ac6
Parents: 5520587
Author: Kapil Arya <[email protected]>
Authored: Wed Nov 4 17:31:51 2015 -0500
Committer: Kapil Arya <[email protected]>
Committed: Wed Nov 4 17:33:06 2015 -0500

----------------------------------------------------------------------
 src/tests/executor_http_api_tests.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1b593db3/src/tests/executor_http_api_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/executor_http_api_tests.cpp 
b/src/tests/executor_http_api_tests.cpp
index 4863092..cdb72cf 100644
--- a/src/tests/executor_http_api_tests.cpp
+++ b/src/tests/executor_http_api_tests.cpp
@@ -344,7 +344,7 @@ TEST_P(ExecutorHttpApiTest, DefaultAccept)
   AWAIT_READY(frameworkId);
   AWAIT_READY(offers);
 
-  ASSERT_EQ(1, offers.get().size());
+  ASSERT_EQ(1u, offers.get().size());
 
   EXPECT_CALL(exec, registered(_, _, _, _))
     .Times(1);
@@ -423,7 +423,7 @@ TEST_P(ExecutorHttpApiTest, NoAcceptHeader)
   AWAIT_READY(frameworkId);
   AWAIT_READY(offers);
 
-  ASSERT_EQ(1, offers.get().size());
+  ASSERT_EQ(1u, offers.get().size());
 
   EXPECT_CALL(exec, registered(_, _, _, _))
     .Times(1);

Reply via email to