Skip to content

Commit

Permalink
fix(credential-provider-node): update container-authorization expir…
Browse files Browse the repository at this point in the history
…ation to use `Date`
  • Loading branch information
Steven Yuan committed Feb 13, 2024
1 parent f0ac43a commit 24600ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jest.mock("@smithy/node-http-handler", () => {
AccessKeyId: "CONTAINER_ACCESS_KEY",
SecretAccessKey: "CONTAINER_SECRET_ACCESS_KEY",
Token: "CONTAINER_TOKEN",
Expiration: "3000-01-01T00:00:00Z",
Expiration: new Date("3000/1/1").toISOString(),
})
);
body.push(null);
Expand Down

0 comments on commit 24600ba

Please sign in to comment.