Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eegli committed Apr 3, 2024
1 parent 81ae7bb commit 185c6cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sts/assume_role.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl ShortTermCredentials for AssumeRole {
&self,
config: &CommonStsConfig,
mfa_token: String,
lt_profile: &LongTermProfile,
lt_profile: &LongTermProfile<'_>,
) -> anyhow::Result<ShortTermProfile> {
Ok(ShortTermProfile {
access_key: "sts-access-key".to_owned(),
Expand Down
2 changes: 1 addition & 1 deletion src/sts/session_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl ShortTermCredentials for SessionToken {
&self,
config: &CommonStsConfig,
mfa_token: String,
lt_profile: &LongTermProfile,
lt_profile: &LongTermProfile<'_>,
) -> anyhow::Result<ShortTermProfile> {
Ok(ShortTermProfile {
access_key: "sts-access-key".to_owned(),
Expand Down

0 comments on commit 185c6cb

Please sign in to comment.