You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2015/02/24 22:58:21 UTC

mesos git commit: Fixed a style issue in the test launcher.

Repository: mesos
Updated Branches:
  refs/heads/master b9ec45edb -> b913ddf17


Fixed a style issue in the test launcher.


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

Branch: refs/heads/master
Commit: b913ddf1731bef548b9185bdb019b48bd400b4cc
Parents: b9ec45e
Author: Benjamin Mahler <be...@gmail.com>
Authored: Tue Feb 24 13:58:12 2015 -0800
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Tue Feb 24 13:58:12 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/b913ddf1/src/tests/launcher.hpp
----------------------------------------------------------------------
diff --git a/src/tests/launcher.hpp b/src/tests/launcher.hpp
index 579a4af..81ae95c 100644
--- a/src/tests/launcher.hpp
+++ b/src/tests/launcher.hpp
@@ -76,9 +76,9 @@ public:
     EXPECT_CALL(*this, recover(_))
       .WillRepeatedly(DoDefault());
 
-    ON_CALL(*this, fork(_,_,_,_,_,_,_,_,_))
+    ON_CALL(*this, fork(_, _, _, _, _, _, _, _, _))
       .WillByDefault(InvokeFork(this));
-    EXPECT_CALL(*this, fork(_,_,_,_,_,_,_,_,_))
+    EXPECT_CALL(*this, fork(_, _, _, _, _, _, _, _, _))
       .WillRepeatedly(DoDefault());
 
     ON_CALL(*this, destroy(_))