summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-03-09 14:50:06 +0000
committerBenjamin Schubert <ben.c.schubert@gmail.com>2019-03-20 09:38:41 +0000
commit8b26bbf9ea2c3c9b566d95675cea896459ed5c71 (patch)
tree26123198f81c1057fc34b9709e7453f65867a5cc
parent7e416e43695de45726fdef2e0134b55e565c130d (diff)
downloadbuildstream-8b26bbf9ea2c3c9b566d95675cea896459ed5c71.tar.gz
tests/frontend/push.py: add missing assert statements
-rw-r--r--tests/frontend/push.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/push.py b/tests/frontend/push.py
index b573a7e41..ab15822bc 100644
--- a/tests/frontend/push.py
+++ b/tests/frontend/push.py
@@ -299,11 +299,11 @@ def test_artifact_too_large(cli, datafiles, tmpdir):
# Ensure that the small artifact is still in the share
states = cli.get_element_states(project, ['small_element.bst', 'large_element.bst'])
- states['small_element.bst'] == 'cached'
+ assert states['small_element.bst'] == 'cached'
assert_shared(cli, share, project, 'small_element.bst')
# Ensure that the artifact is cached locally but NOT remotely
- states['large_element.bst'] == 'cached'
+ assert states['large_element.bst'] == 'cached'
assert_not_shared(cli, share, project, 'large_element.bst')