summaryrefslogtreecommitdiff
path: root/tests/frontend/track.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-29 15:46:13 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-05-08 03:59:38 +0900
commit11dffaef4b75806b166db1a46b520e6d147d7969 (patch)
treea9d370b13b8d22435c81607a6e0e9ea0085cd2a3 /tests/frontend/track.py
parent2390c81411aee2019cec891ea0be5247e779bc2e (diff)
downloadbuildstream-11dffaef4b75806b166db1a46b520e6d147d7969.tar.gz
_stream.py: Add StreamError exception
Use Stream error for Stream errors.
Diffstat (limited to 'tests/frontend/track.py')
-rw-r--r--tests/frontend/track.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/track.py b/tests/frontend/track.py
index f8818ffb5..2defc2349 100644
--- a/tests/frontend/track.py
+++ b/tests/frontend/track.py
@@ -350,7 +350,7 @@ def test_track_consistency_error(cli, tmpdir, datafiles):
# Track the element causing a consistency error
result = cli.run(project=project, args=['track', 'error.bst'])
- result.assert_main_error(ErrorDomain.PIPELINE, None)
+ result.assert_main_error(ErrorDomain.STREAM, None)
result.assert_task_error(ErrorDomain.SOURCE, 'the-consistency-error')
@@ -362,7 +362,7 @@ def test_track_consistency_bug(cli, tmpdir, datafiles):
result = cli.run(project=project, args=['track', 'bug.bst'])
# We expect BuildStream to fail gracefully, with no recorded exception.
- result.assert_main_error(ErrorDomain.PIPELINE, None)
+ result.assert_main_error(ErrorDomain.STREAM, None)
@pytest.mark.datafiles(DATA_DIR)