UT: Add typehints to test_reset_agent_configuration

This commit is contained in:
Ilija Lazoroski 2022-09-13 09:33:48 +02:00
parent 599c753cf7
commit 2bfb85a652
1 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,10 @@ def mock_file_repository() -> IFileRepository:
@pytest.fixture
def callable_reset_agent_configuration(agent_configuration_repository, mock_file_repository):
def callable_reset_agent_configuration(
agent_configuration_repository: IAgentConfigurationRepository,
mock_file_repository: IFileRepository,
) -> reset_agent_configuration:
return reset_agent_configuration(agent_configuration_repository, mock_file_repository)