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/integration | |
parent | 2390c81411aee2019cec891ea0be5247e779bc2e (diff) | |
download | buildstream-11dffaef4b75806b166db1a46b520e6d147d7969.tar.gz |
_stream.py: Add StreamError exception
Use Stream error for Stream errors.
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/shell.py b/tests/integration/shell.py index 844f51d62..18953aa2d 100644 --- a/tests/integration/shell.py +++ b/tests/integration/shell.py @@ -317,7 +317,7 @@ def test_sysroot_workspace_visible(cli, tmpdir, datafiles): # Ensure the dependencies of our build failing element are built result = cli.run(project=project, args=['build', element_name]) - result.assert_main_error(ErrorDomain.PIPELINE, None) + result.assert_main_error(ErrorDomain.STREAM, None) # Discover the sysroot of the failed build directory, after one # failed build, there should be only one directory there. |