From a0432093db76d7bb462f113d4bbeca0a8f376e95 Mon Sep 17 00:00:00 2001 From: Colin Wilk Date: Sun, 28 Jun 2026 23:24:21 +0200 Subject: Format python files with ruff --- molecule/default/tests/test_installation.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'molecule/default/tests/test_installation.py') diff --git a/molecule/default/tests/test_installation.py b/molecule/default/tests/test_installation.py index bacc320..800eba4 100644 --- a/molecule/default/tests/test_installation.py +++ b/molecule/default/tests/test_installation.py @@ -1,18 +1,18 @@ -testinfra_hosts = ['borg-client', 'borg-server', 'borg-server-2'] +testinfra_hosts = ["borg-client", "borg-server", "borg-server-2"] def test_borg_installed(host): - borg = host.package('borgbackup') + borg = host.package("borgbackup") assert borg.is_installed def test_borg_binary_exists(host): - borg = host.file('/usr/bin/borg') + borg = host.file("/usr/bin/borg") assert borg.exists assert borg.mode == 0o755 def test_borg_version(host): - c = host.run('borg --version') + c = host.run("borg --version") assert c.rc == 0 - assert 'borg' in c.stdout.lower() + assert "borg" in c.stdout.lower() -- cgit v1.2.3