diff options
Diffstat (limited to 'tests/sandboxes/selection.py')
-rw-r--r-- | tests/sandboxes/selection.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/sandboxes/selection.py b/tests/sandboxes/selection.py index 70fbdac70..9275961ce 100644 --- a/tests/sandboxes/selection.py +++ b/tests/sandboxes/selection.py @@ -43,11 +43,7 @@ def test_force_sandbox(cli, datafiles): _yaml.roundtrip_dump(element, element_path) # Build without access to host tools, this will fail - result = cli.run( - project=project, - args=["build", "element.bst"], - env={"PATH": "", "BST_FORCE_SANDBOX": "bwrap"}, - ) + result = cli.run(project=project, args=["build", "element.bst"], env={"PATH": "", "BST_FORCE_SANDBOX": "bwrap"},) result.assert_main_error(ErrorDomain.PLATFORM, None) assert "Bubblewrap not found" in result.stderr # we have asked for a spesific sand box, but it is not avalble so |