From 216764c69e9d33c3c39fbca55e4fdb3a4093fb41 Mon Sep 17 00:00:00 2001 From: Tyler Levy Conde Date: Mon, 23 Sep 2024 11:09:56 -0600 Subject: [PATCH] Allow fstring linting --- tests/pytests/integration/ssh/test_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/integration/ssh/test_deploy.py b/tests/pytests/integration/ssh/test_deploy.py index 524a2bcc26f9..37bdd4167585 100644 --- a/tests/pytests/integration/ssh/test_deploy.py +++ b/tests/pytests/integration/ssh/test_deploy.py @@ -182,7 +182,7 @@ def test_relenv_ping(salt_ssh_cli): """ ret = salt_ssh_cli.run("--relenv", "test.ping") assert ret.returncode == 0 - assert ret.data is True.joinpath("salt-call").exists() + assert ret.data is True def test_wipe(salt_ssh_cli):