Repository: mesos
Updated Branches:
  refs/heads/master 8e2d6d296 -> a7dc5f472


Fixed redundant use of `.get().` with `->`.


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

Branch: refs/heads/master
Commit: a7dc5f472e1a7d49913ac5974684a091e4cf3a1c
Parents: 8e2d6d2
Author: Andrew Schwartzmeyer <[email protected]>
Authored: Tue May 1 20:04:52 2018 -0700
Committer: Andrew Schwartzmeyer <[email protected]>
Committed: Tue May 1 20:04:52 2018 -0700

----------------------------------------------------------------------
 3rdparty/stout/tests/os/filesystem_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a7dc5f47/3rdparty/stout/tests/os/filesystem_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/tests/os/filesystem_tests.cpp 
b/3rdparty/stout/tests/os/filesystem_tests.cpp
index 6e04dc8..b17ab9a 100644
--- a/3rdparty/stout/tests/os/filesystem_tests.cpp
+++ b/3rdparty/stout/tests/os/filesystem_tests.cpp
@@ -230,7 +230,7 @@ TEST_F(FsTest, CreateDirectoryAtMaxPath)
   const size_t max_path_length = 248;
   const string testdir = path::join(
     sandbox.get(),
-    string(max_path_length - sandbox.get().length() - 1 /* separator */, 'c'));
+    string(max_path_length - sandbox->length() - 1 /* separator */, 'c'));
 
   EXPECT_EQ(testdir.length(), max_path_length);
   ASSERT_SOME(os::mkdir(testdir));

Reply via email to