From 96902c3c4194963efa0216c730e2a74a380b1e22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20=C3=81lvaro?= Date: Sun, 2 Oct 2022 11:10:19 +0200 Subject: [PATCH] fix: Format style --- tests/pytests/unit/modules/test_mac_brew_pkg.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/pytests/unit/modules/test_mac_brew_pkg.py b/tests/pytests/unit/modules/test_mac_brew_pkg.py index cf87e5f1c8fc..f4ad86a66d2c 100644 --- a/tests/pytests/unit/modules/test_mac_brew_pkg.py +++ b/tests/pytests/unit/modules/test_mac_brew_pkg.py @@ -887,7 +887,9 @@ def test_info_installed(HOMEBREW_BIN): }, ): assert ( - mac_brew.info_installed("cdalvaro/tap/salt", "vim", "visual-studio-code") + mac_brew.info_installed( + "cdalvaro/tap/salt", "vim", "visual-studio-code" + ) == _expected ) @@ -951,4 +953,6 @@ def test_list_upgrades(HOMEBREW_BIN): "cmd.run": mock_cmd, }, ): - assert mac_brew.list_upgrades(refresh=False, include_casks=True) == _expected + assert ( + mac_brew.list_upgrades(refresh=False, include_casks=True) == _expected + )