From c865bf3c157c261574944c23293bea3c50191c93 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 11 May 2022 09:49:44 -0400 Subject: [PATCH] UT: Remove unneeded tmp_path from test_pba_file_download.flask_client() --- .../monkey_island/cc/resources/test_pba_file_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/tests/unit_tests/monkey_island/cc/resources/test_pba_file_download.py b/monkey/tests/unit_tests/monkey_island/cc/resources/test_pba_file_download.py index e05ab3362..570d3239c 100644 --- a/monkey/tests/unit_tests/monkey_island/cc/resources/test_pba_file_download.py +++ b/monkey/tests/unit_tests/monkey_island/cc/resources/test_pba_file_download.py @@ -31,7 +31,7 @@ class MockFileStorageService(IFileStorageService): @pytest.fixture -def flask_client(build_flask_client, tmp_path): +def flask_client(build_flask_client): container = StubDIContainer() container.register(IFileStorageService, MockFileStorageService)