From 9dd855790cd7c33db3a1736d5f6d6378ceaeb24a Mon Sep 17 00:00:00 2001 From: Maurane GLAUDE Date: Thu, 12 Sep 2024 09:17:28 +0200 Subject: [PATCH] fix(tests.integration): reformat code with ruff --- tests/integration/test_app.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/integration/test_app.py b/tests/integration/test_app.py index 8961733..b678ec1 100644 --- a/tests/integration/test_app.py +++ b/tests/integration/test_app.py @@ -110,12 +110,7 @@ def test_run__empty_target(self, downloaded_dir: Path, program_dir: Path, settin # Run the application # Make sure each application is installed in new directory custom_dir = program_dir.joinpath(source_dir.name) - app = App( - source_dir=source_dir, - target_dir=custom_dir, - shortcut=False, - launch=True - ) + app = App(source_dir=source_dir, target_dir=custom_dir, shortcut=False, launch=True) try: app.run() except InstallError: