mesos git commit: Fixed a typo in a test.

2017-08-10 Thread alexr
Repository: mesos
Updated Branches:
  refs/heads/master e08593ae9 -> 8127bae34


Fixed a typo in a test.

Review: https://reviews.apache.org/r/61584/


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

Branch: refs/heads/master
Commit: 8127bae344ad77c3d81ae1691f02faf17e280424
Parents: e08593a
Author: Gastón Kleiman 
Authored: Fri Aug 11 02:13:37 2017 +0200
Committer: Alexander Rukletsov 
Committed: Fri Aug 11 02:13:37 2017 +0200

--
 src/tests/fetcher_cache_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/8127bae3/src/tests/fetcher_cache_tests.cpp
--
diff --git a/src/tests/fetcher_cache_tests.cpp 
b/src/tests/fetcher_cache_tests.cpp
index 6d212cd..17bd95f 100644
--- a/src/tests/fetcher_cache_tests.cpp
+++ b/src/tests/fetcher_cache_tests.cpp
@@ -374,7 +374,7 @@ void FetcherCacheTest::setupArchiveAsset()
   archivePath = path::join(assetsDirectory, ARCHIVE_NAME);
 
   // Make the archive file read-only, so we can tell if it becomes
-  // executable by acccident.
+  // executable by accident.
   ASSERT_SOME(os::chmod(archivePath, S_IRUSR | S_IRGRP | S_IROTH));
 }
 



mesos git commit: Fixed a typo in a test name.

2016-09-21 Thread alexr
Repository: mesos
Updated Branches:
  refs/heads/master 8483fa8a9 -> 5a075ced4


Fixed a typo in a test name.


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

Branch: refs/heads/master
Commit: 5a075ced4d9743a957473e50b4f20976fbe5c467
Parents: 8483fa8
Author: Alexander Rukletsov 
Authored: Wed Sep 21 11:03:32 2016 +0200
Committer: Alexander Rukletsov 
Committed: Wed Sep 21 11:10:19 2016 +0200

--
 src/tests/slave_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/5a075ced/src/tests/slave_tests.cpp
--
diff --git a/src/tests/slave_tests.cpp b/src/tests/slave_tests.cpp
index 1279baa..b84be89 100644
--- a/src/tests/slave_tests.cpp
+++ b/src/tests/slave_tests.cpp
@@ -587,7 +587,7 @@ TEST_F(SlaveTest, RemoveUnregisteredTerminatedExecutor)
 // mesos-executor args. For more details of this see MESOS-1873.
 //
 // This assumes the ability to execute '/bin/echo --author'.
-TEST_F(SlaveTest, ComamndTaskWithArguments)
+TEST_F(SlaveTest, CommandTaskWithArguments)
 {
   Try> master = StartMaster();
   ASSERT_SOME(master);