#3599 - Update Implementation Coverage script (#3621)

This commit is contained in:
Bert Blommers 2021-01-27 18:54:21 +00:00 committed by GitHub
commit b9b793f421
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 531 additions and 73 deletions

View file

@ -122,5 +122,10 @@ class STSBackend(BaseBackend):
self.assumed_roles.append(role)
return role
def get_caller_identity(self):
# Logic resides in responses.py
# Fake method here to make implementation coverage script aware that this method is implemented
pass
sts_backend = STSBackend()