UT: Add more propagation credentials

This commit is contained in:
Mike Salvatore 2022-07-11 14:13:24 -04:00
parent 1af21b372c
commit 4a4c4324fb
1 changed files with 8 additions and 0 deletions

View File

@ -16,3 +16,11 @@ PROPAGATION_CREDENTIALS_2 = Credentials(
identities=(Username(username), Username(special_username)),
secrets=(Password(password_1), Password(password_2), Password(password_3)),
)
PROPAGATION_CREDENTIALS_3 = Credentials(
identities=(Username(username),),
secrets=(Password(password_1),),
)
PROPAGATION_CREDENTIALS_4 = Credentials(
identities=(Username(username),),
secrets=(Password(password_2),),
)