summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJosh Smith <qinusty@gmail.com>2018-09-19 10:14:00 +0100
committerJosh Smith <qinusty@gmail.com>2018-09-19 10:25:21 +0100
commit198fbfe81dd38027bf12720e916cf87ca597c04a (patch)
treec232c2221eeec9363ecc7b11587d72a4ad8b1f63 /tests
parentab56f693000f979f2c65ef6a85e3fb62256c2a06 (diff)
downloadbuildstream-198fbfe81dd38027bf12720e916cf87ca597c04a.tar.gz
cascache.py: Move push/pull messaging to cascache
Pulled/Pushed messages will no longer be produced from within element.py, instead they will be produced during CasCache push() and pull() appropriately. Message consistency has also been improved.
Diffstat (limited to 'tests')
-rw-r--r--tests/testutils/runcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/runcli.py b/tests/testutils/runcli.py
index 8cd5bcb75..3535e94ea 100644
--- a/tests/testutils/runcli.py
+++ b/tests/testutils/runcli.py
@@ -178,7 +178,7 @@ class Result():
return list(pushed)
def get_pulled_elements(self):
- pulled = re.findall(r'\[\s*pull:(\S+)\s*\]\s*INFO\s*Downloaded artifact', self.stderr)
+ pulled = re.findall(r'\[\s*pull:(\S+)\s*\]\s*INFO\s*Pulled artifact', self.stderr)
if pulled is None:
return []