Skip to content

Commit 6b41c8a

Browse files
committed
t
1 parent e2fdbc1 commit 6b41c8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/test/amazonq/customizationUtil.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe('CodeWhisperer-customizationUtils', function () {
8282
assert.strictEqual(actualCustomization.name, selectedCustomization.name)
8383
})
8484

85-
it(`setSelectedCsutomization should set correctly if override is false or not specified`, async function () {
85+
it(`setSelectedCustomization should set to the customization provided if override option is false or not specified`, async function () {
8686
await setSelectedCustomization({ arn: 'FOO' }, false)
8787
assert.strictEqual(getSelectedCustomization().arn, 'FOO')
8888

@@ -96,7 +96,7 @@ describe('CodeWhisperer-customizationUtils', function () {
9696
assert.strictEqual(getSelectedCustomization().arn, 'QOO')
9797
})
9898

99-
it(`setSelectedCsutomization should only do once for override per customization arn`, async function () {
99+
it(`setSelectedCustomization should only set to the customization provided once for override per customization arn if override is true`, async function () {
100100
await setSelectedCustomization({ arn: 'OVERRIDE' }, true)
101101
assert.strictEqual(getSelectedCustomization().arn, 'OVERRIDE')
102102

0 commit comments

Comments
 (0)