summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim MacArthur <jim.macarthur@codethink.co.uk>2018-09-20 16:52:53 +0100
committerJim MacArthur <jim.macarthur@codethink.co.uk>2018-09-21 11:53:11 +0100
commitca1bb72cc098febfd1194c001f6db2a1d18cbaea (patch)
tree06be3a907dfbd8767a38e3285885f67f0f2d646d
parent2aae68c7c2d9f72b03328c4e42025001647782b5 (diff)
downloadbuildstream-jmac/remote_exec_checkout_fix.tar.gz
tests/artifactcache/push.py: Ignore return value of push_directoryjmac/remote_exec_checkout_fix
-rw-r--r--tests/artifactcache/push.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/artifactcache/push.py b/tests/artifactcache/push.py
index bdeb86862..faf6a6980 100644
--- a/tests/artifactcache/push.py
+++ b/tests/artifactcache/push.py
@@ -228,9 +228,9 @@ def _test_push_directory(user_config_file, project_dir, artifact_dir, artifact_d
directory = CasBasedDirectory(context, ref=artifact_digest)
# Push the CasBasedDirectory object
- directory_digest = cas.push_directory(project, directory)
+ cas.push_directory(project, directory)
- queue.put(directory_digest.hash)
+ queue.put(directory.ref.hash)
else:
queue.put("No remote configured")