diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index a50b9fa7..4543ad92 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -34,9 +34,7 @@ def test_local_env(): if result["returncode"] != 1: pytest.fail(str(result)) # pylint: disable=unsupported-membership-test - assert all([s in result["err"] for s in ("PASSED", "IGNORED", "FAILED")]), result[ - "out" - ] + assert all([s in result["err"] for s in ("PASSED", "FAILED")]), result["out"] def test_multiple_env_build(clirunner, validate_cliresult, tmpdir):