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-20 09:30:23 +0100
commitbb66744d654ae02087b0866061d25da317c592d5 (patch)
tree4a3375039387c38a11c677bc804860683ff5fac8 /tests
parent0a314bb84a7615113f73786aa1f83eb294fb0be6 (diff)
downloadbuildstream-bb66744d654ae02087b0866061d25da317c592d5.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 []