From c633f38b9b53c30082407b1f1d9d8c7738c9d680 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Mon, 3 Apr 2017 21:50:30 -0400 Subject: [PATCH] 11308: Add stderr assertion for easier debugging. --- sdk/python/tests/test_arv_put.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/python/tests/test_arv_put.py b/sdk/python/tests/test_arv_put.py index 755b4b5ab4..e0ff7a772d 100644 --- a/sdk/python/tests/test_arv_put.py +++ b/sdk/python/tests/test_arv_put.py @@ -787,6 +787,7 @@ class ArvPutIntegrationTest(run_test_server.TestCaseWithServers, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=self.ENVIRON) stdout, stderr = pipe.communicate(text.encode()) + self.assertRegex(stderr.decode(), r'INFO: Collection (updated:|saved as)') search_key = ('portable_data_hash' if '--portable-data-hash' in extra_args else 'uuid') collection_list = arvados.api('v1').collections().list( -- 2.39.5