diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-29 15:46:13 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-05-08 03:59:38 +0900 |
commit | 11dffaef4b75806b166db1a46b520e6d147d7969 (patch) | |
tree | a9d370b13b8d22435c81607a6e0e9ea0085cd2a3 /tests/frontend/overlaps.py | |
parent | 2390c81411aee2019cec891ea0be5247e779bc2e (diff) | |
download | buildstream-11dffaef4b75806b166db1a46b520e6d147d7969.tar.gz |
_stream.py: Add StreamError exception
Use Stream error for Stream errors.
Diffstat (limited to 'tests/frontend/overlaps.py')
-rw-r--r-- | tests/frontend/overlaps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/overlaps.py b/tests/frontend/overlaps.py index 794f73944..36e15acd7 100644 --- a/tests/frontend/overlaps.py +++ b/tests/frontend/overlaps.py @@ -38,7 +38,7 @@ def test_overlaps_error(cli, datafiles): gen_project(project_dir, True) result = cli.run(project=project_dir, silent=True, args=[ 'build', 'collect.bst']) - result.assert_main_error(ErrorDomain.PIPELINE, None) + result.assert_main_error(ErrorDomain.STREAM, None) result.assert_task_error(ErrorDomain.ELEMENT, "overlap-error") @@ -69,7 +69,7 @@ def test_overlaps_whitelist_on_overlapper(cli, datafiles): gen_project(project_dir, True) result = cli.run(project=project_dir, silent=True, args=[ 'build', 'collect-partially-whitelisted.bst']) - result.assert_main_error(ErrorDomain.PIPELINE, None) + result.assert_main_error(ErrorDomain.STREAM, None) result.assert_task_error(ErrorDomain.ELEMENT, "overlap-error") |