From 9ff3c758eb6ea0c3286817ffe89eea0e7daffb6a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 12 Nov 2020 15:35:37 +0200 Subject: [PATCH] Fix tests --- tests/commands/test_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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):