diff options
Diffstat (limited to 'tests/remoteexecution/buildfail.py')
-rw-r--r-- | tests/remoteexecution/buildfail.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/remoteexecution/buildfail.py b/tests/remoteexecution/buildfail.py index bd1c81891..8802a311c 100644 --- a/tests/remoteexecution/buildfail.py +++ b/tests/remoteexecution/buildfail.py @@ -23,9 +23,7 @@ import pytest from buildstream._exceptions import ErrorDomain from buildstream import _yaml -from buildstream.testing import ( - cli_remote_execution as cli, -) # pylint: disable=unused-import +from buildstream.testing import cli_remote_execution as cli # pylint: disable=unused-import pytestmark = pytest.mark.remoteexecution @@ -54,10 +52,7 @@ def test_build_remote_failure(cli, datafiles): result = cli.run(project=project, args=["build", "element.bst"]) result.assert_main_error(ErrorDomain.STREAM, None) - result = cli.run( - project=project, - args=["artifact", "checkout", "element.bst", "--directory", checkout_path], - ) + result = cli.run(project=project, args=["artifact", "checkout", "element.bst", "--directory", checkout_path],) result.assert_success() # check that the file created before the failure exists |