[ARVADOS] updated: f8084a54742def1915c9f4be290f9076033af152
Git user
git at public.curoverse.com
Tue Mar 21 11:41:28 EDT 2017
Summary of changes:
sdk/python/tests/test_arv_keepdocker.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via f8084a54742def1915c9f4be290f9076033af152 (commit)
from 9c99316ba4a62ab15b383a8e3b2ec6f4d7165a3e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit f8084a54742def1915c9f4be290f9076033af152
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Tue Mar 21 11:41:15 2017 -0400
Fix test broken by change of default behavior in arv-keepdocker. refs #8567
diff --git a/sdk/python/tests/test_arv_keepdocker.py b/sdk/python/tests/test_arv_keepdocker.py
index e67aacc..a25ad16 100644
--- a/sdk/python/tests/test_arv_keepdocker.py
+++ b/sdk/python/tests/test_arv_keepdocker.py
@@ -54,9 +54,9 @@ class ArvKeepdockerTestCase(unittest.TestCase):
for supported, img_id, expect_ok in [
(['v1'], old_id, True),
(['v1'], new_id, False),
- (None, old_id, True),
- ([], old_id, True),
- ([], new_id, True),
+ (None, old_id, False),
+ ([], old_id, False),
+ ([], new_id, False),
(['v1', 'v2'], new_id, True),
(['v1'], new_id, False),
(['v2'], new_id, True)]:
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list