Skip to content

Commit

Permalink
simplify naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Hweinstock committed Dec 2, 2024
1 parent 67784e1 commit 1d29b18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/shared/awsClientBuilderV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ interface AwsConfigOptions {
}
export type AwsClientOptions = AwsConfigOptions

export class DefaultAWSClientBuilderV3 {
export class AWSClientBuilderV3 {
public constructor(private readonly context: AwsContext) {}

private getShim(): CredentialsShim {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ import { getClientId } from '../../shared/telemetry/util'
import { FakeMemento } from '../fakeExtensionContext'
import { FakeAwsContext } from '../utilities/fakeAwsContext'
import { GlobalState } from '../../shared/globalState'
import { DefaultAWSClientBuilderV3, getServiceId, recordErrorTelemetry } from '../../shared/awsClientBuilderV3'
import { AWSClientBuilderV3, getServiceId, recordErrorTelemetry } from '../../shared/awsClientBuilderV3'
import { Client } from '@aws-sdk/smithy-client'
import { extensionVersion } from '../../shared'
import { assertTelemetry } from '../testUtil'
import { telemetry } from '../../shared/telemetry'

describe('DefaultAwsClientBuilderV3', function () {
let builder: DefaultAWSClientBuilderV3
describe('AwsClientBuilderV3', function () {
let builder: AWSClientBuilderV3

beforeEach(async function () {
builder = new DefaultAWSClientBuilderV3(new FakeAwsContext())
builder = new AWSClientBuilderV3(new FakeAwsContext())
})

describe('createAndConfigureSdkClient', function () {
Expand Down

0 comments on commit 1d29b18

Please sign in to comment.