Repository: mesos Updated Branches: refs/heads/master f62c22a99 -> 5f53ddc99
Fixed test indentation. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5f53ddc9 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5f53ddc9 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5f53ddc9 Branch: refs/heads/master Commit: 5f53ddc9967f225dcaa71fbe8923e64429b5bb8c Parents: f62c22a Author: James Peach <[email protected]> Authored: Tue Apr 17 17:06:27 2018 -0700 Committer: James Peach <[email protected]> Committed: Tue Apr 17 17:06:27 2018 -0700 ---------------------------------------------------------------------- src/tests/exception_tests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5f53ddc9/src/tests/exception_tests.cpp ---------------------------------------------------------------------- diff --git a/src/tests/exception_tests.cpp b/src/tests/exception_tests.cpp index 170e375..2aace2f 100644 --- a/src/tests/exception_tests.cpp +++ b/src/tests/exception_tests.cpp @@ -168,16 +168,16 @@ TEST_F(ExceptionTest, DisallowSchedulerCallbacksOnAbort) .Times(0); EXPECT_CALL(sched, statusUpdate(&driver, _)) - .Times(0); + .Times(0); EXPECT_CALL(sched, frameworkMessage(&driver, _, _, _)) - .Times(0); + .Times(0); EXPECT_CALL(sched, slaveLost(&driver, _)) - .Times(0); + .Times(0); EXPECT_CALL(sched, error(&driver, _)) - .Times(0); + .Times(0); ASSERT_EQ(DRIVER_ABORTED, driver.abort());
