UT: Add typehints to test_reset_agent_configuration
This commit is contained in:
parent
599c753cf7
commit
2bfb85a652
|
@ -35,7 +35,10 @@ def mock_file_repository() -> IFileRepository:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@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)
|
return reset_agent_configuration(agent_configuration_repository, mock_file_repository)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue