Skip to content

Commit 8483ee6

Browse files
committed
fix failing test
1 parent d9ad156 commit 8483ee6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/src/Core/Amazon.Runtime/Credentials/_bcl+netstandard/SSOImmutableCredentials.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ public SSOImmutableCredentials(
5252
/// <param name="expiration"></param>
5353
/// <param name="accountId"></param>
5454
/// <exception cref="ArgumentNullException"></exception>
55-
public SSOImmutableCredentials(string awsAccessKeyId, string awsSecretAccessKey, string token, DateTime expiration, string accountId) : base(awsAccessKeyId, awsSecretAccessKey, token)
55+
public SSOImmutableCredentials(string awsAccessKeyId, string awsSecretAccessKey, string token, DateTime expiration, string accountId) : base(awsAccessKeyId, awsSecretAccessKey, token, accountId)
5656
{
5757
if (string.IsNullOrEmpty(token)) throw new ArgumentNullException(nameof(token));
58+
Expiration = expiration;
5859
AccountId = accountId;
5960
}
6061

0 commit comments

Comments
 (0)