Skip to content

Commit

Permalink
chore: fixed aws-sso-integration-service test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvilla committed Mar 5, 2024
1 parent 1f9d606 commit 1cdcab1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Session } from "../../models/session";
import { SessionType } from "../../models/session-type";
import { constants } from "../../models/constants";
import { ThrottleService } from "../throttle-service";
import { ListAccountRolesCommandInput, ListAccountRolesRequest } from "@aws-sdk/client-sso";
import { AccountInfo, ListAccountRolesCommandInput, ListAccountRolesRequest, RoleInfo } from "@aws-sdk/client-sso";

describe("AwsSsoIntegrationService", () => {
afterEach(() => {
Expand Down Expand Up @@ -771,13 +771,13 @@ describe("AwsSsoIntegrationService", () => {
},
];

const accountInfo: SSO.AccountInfo = {
const accountInfo: AccountInfo = {
accountId: "testAccountId",
accountName: "testAccountName",
emailAddress: "test@gmail.com",
};

const accountRole: SSO.RoleInfo = {
const accountRole: RoleInfo = {
roleName: "roleTest",
accountId: "testAccountId",
};
Expand Down

0 comments on commit 1cdcab1

Please sign in to comment.