Skip to content

Commit 7b370c2

Browse files
committed
fix: import defaultRoleAssumers source from src folder
1 parent 456e6a5 commit 7b370c2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ jest.mock("@aws-sdk/node-http-handler", () => ({
1515
streamCollector: jest.fn(),
1616
}));
1717

18-
import { getDefaultRoleAssumer, getDefaultRoleAssumerWithWebIdentity } from "./defaultRoleAssumers";
19-
import type { AssumeRoleCommandInput } from "./commands/AssumeRoleCommand";
2018
import { NodeHttpHandler, streamCollector } from "@aws-sdk/node-http-handler";
21-
import { AssumeRoleWithWebIdentityCommandInput } from "./commands/AssumeRoleWithWebIdentityCommand";
19+
20+
import type { AssumeRoleCommandInput } from "../src/commands/AssumeRoleCommand";
21+
import { AssumeRoleWithWebIdentityCommandInput } from "../src/commands/AssumeRoleWithWebIdentityCommand";
22+
import { getDefaultRoleAssumer, getDefaultRoleAssumerWithWebIdentity } from "../src/defaultRoleAssumers";
2223
const mockConstructorInput = jest.fn();
2324
jest.mock("./STSClient", () => ({
2425
STSClient: function (params: any) {

0 commit comments

Comments
 (0)