You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2019/05/22 08:17:09 UTC

[mesos] branch master updated: Fixed sign-compare issue introduced in bf07bbd1cf1.

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

bbannier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new dae58d9  Fixed sign-compare issue introduced in bf07bbd1cf1.
dae58d9 is described below

commit dae58d9343189a82731726c843d97f95ffd9827b
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Wed May 22 09:53:44 2019 +0200

    Fixed sign-compare issue introduced in bf07bbd1cf1.
    
    Review: https://reviews.apache.org/r/70699
---
 src/tests/master_authorization_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/master_authorization_tests.cpp b/src/tests/master_authorization_tests.cpp
index 21e450c..ee69910 100644
--- a/src/tests/master_authorization_tests.cpp
+++ b/src/tests/master_authorization_tests.cpp
@@ -3298,7 +3298,7 @@ TEST_P(MasterOperationAuthorizationTest, Accept)
   permissive = false;
 
   AWAIT_READY(offers);
-  ASSERT_EQ(1u, offers->offers_size());
+  ASSERT_EQ(1, offers->offers_size());
 
   hashmap<v1::TaskID, Future<v1::scheduler::Event::Update>>
     actualTaskStatusUpdates;