You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by qi...@apache.org on 2018/11/08 09:31:45 UTC

[mesos] 03/04: Fixed a coding error that a test waited on a wrong task status update.

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

qianzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 05e2cb58dde866b67955304417804bee684d5817
Author: Qian Zhang <zh...@gmail.com>
AuthorDate: Thu Nov 1 13:35:49 2018 -0700

    Fixed a coding error that a test waited on a wrong task status update.
    
    Review: https://reviews.apache.org/r/69236
---
 src/tests/health_check_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/health_check_tests.cpp b/src/tests/health_check_tests.cpp
index 0ba7bdc..3e9b2da 100644
--- a/src/tests/health_check_tests.cpp
+++ b/src/tests/health_check_tests.cpp
@@ -1792,7 +1792,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(
   driver.acceptOffers(
       {offers->front().id()}, {LAUNCH_GROUP(executor, taskGroup)});
 
-  AWAIT_READY(statusRunning);
+  AWAIT_READY(statusStarting);
   EXPECT_EQ(TASK_STARTING, statusStarting->state());
 
   AWAIT_READY(statusRunning);