You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wf...@apache.org on 2014/01/16 18:51:09 UTC

git commit: Fix broken test in client.cli.job

Updated Branches:
  refs/heads/master b7a82050e -> 25fab7f2c


Fix broken test in client.cli.job

Fixes broken test runs introduced in commit a49d94c 'Fix bad merge commit'

Bugs closed: AURORA-41

Reviewed at https://reviews.apache.org/r/16945/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/25fab7f2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/25fab7f2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/25fab7f2

Branch: refs/heads/master
Commit: 25fab7f2c289d9b1bc6098ef33524bbc627c5e75
Parents: b7a8205
Author: Jake Farrell <jf...@apache.org>
Authored: Thu Jan 16 09:50:55 2014 -0800
Committer: Bill Farner <wf...@apache.org>
Committed: Thu Jan 16 09:50:55 2014 -0800

----------------------------------------------------------------------
 src/test/python/apache/aurora/client/cli/test_status.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/25fab7f2/src/test/python/apache/aurora/client/cli/test_status.py
----------------------------------------------------------------------
diff --git a/src/test/python/apache/aurora/client/cli/test_status.py b/src/test/python/apache/aurora/client/cli/test_status.py
index f4ca0d0..05f3929 100644
--- a/src/test/python/apache/aurora/client/cli/test_status.py
+++ b/src/test/python/apache/aurora/client/cli/test_status.py
@@ -123,9 +123,9 @@ class TestJobStatus(AuroraClientCommandTest):
     # Wildcard should have expanded to two jobs, so there should be two calls
     # to check_status.
     assert mock_api.check_status.call_count == 2
-    assert (call(AuroraJobKey('example', 'RoleA', 'test', 'hithere')) in
+    assert (call(AuroraJobKey('west', 'RoleA', 'test', 'hithere')) in
         mock_api.check_status.call_args_list)
-    assert (call(AuroraJobKey('example', 'bozo', 'test', 'hello')) in
+    assert (call(AuroraJobKey('west', 'bozo', 'test', 'hello')) in
         mock_api.check_status.call_args_list)
 
   def test_status_wildcard_two(self):