You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gr...@apache.org on 2019/01/30 21:39:59 UTC

[mesos] branch master updated: Removed an unnecessary '.get()' from a master test.

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

grag 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 f44535b  Removed an unnecessary '.get()' from a master test.
f44535b is described below

commit f44535bca811720fc272c9abad2bc78652d61fe3
Author: Greg Mann <gr...@gmail.com>
AuthorDate: Wed Jan 30 12:23:42 2019 -0800

    Removed an unnecessary '.get()' from a master test.
    
    Review: https://reviews.apache.org/r/69863
---
 src/tests/master_tests.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/master_tests.cpp b/src/tests/master_tests.cpp
index 506d45a..acc60962 100644
--- a/src/tests/master_tests.cpp
+++ b/src/tests/master_tests.cpp
@@ -9283,8 +9283,8 @@ TEST_F(MasterTest, OperationUpdateDuringFailover)
        operations.operations(1).uuid().value()};
 
     std::set<string> expectedOperationUUIDs =
-      {operationUUID1.get().value(),
-       operationUUID2.get().value()};
+      {operationUUID1->value(),
+       operationUUID2->value()};
 
     EXPECT_EQ(receivedOperationUUIDs, expectedOperationUUIDs);
   }