Island: Remove monkey_guid from StubPropagationCredentialsRepository

This commit is contained in:
Mike Salvatore 2022-07-11 13:30:14 -04:00
parent d437f02544
commit 2a2ab52da1
1 changed files with 1 additions and 4 deletions

View File

@ -25,10 +25,7 @@ class StubPropagationCredentialsRepository(ICredentialsRepository):
pass
def get_stolen_credentials(self) -> Sequence[Credentials]:
return [
Credentials.from_mapping(PROPAGATION_CREDENTIALS_1, monkey_guid="some_guid"),
Credentials.from_mapping(PROPAGATION_CREDENTIALS_2, monkey_guid="second_guid"),
]
return [PROPAGATION_CREDENTIALS_1, PROPAGATION_CREDENTIALS_2]
def get_all_credentials(self) -> Sequence[Credentials]: