Skip to content

Commit 5657b2e

Browse files
author
David Hasani
committed
nit: rename tests
1 parent a68c5c3 commit 5657b2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/test/codewhisperer/commands/transformByQ.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ describe('transformByQ', function () {
489489
sinon.assert.calledOnce(fetchStub)
490490
})
491491

492-
it('should retry on retriable error and succeed', async () => {
492+
it('should retry upload on retriable error and succeed', async () => {
493493
const failedResponse = {
494494
ok: false,
495495
status: 503,
@@ -511,7 +511,7 @@ describe('transformByQ', function () {
511511
sinon.assert.calledTwice(fetchStub)
512512
})
513513

514-
it('should throw error after 3 failed attempts', async () => {
514+
it('should throw error after 3 failed upload attempts', async () => {
515515
const failedResponse = {
516516
ok: false,
517517
status: 500,
@@ -535,7 +535,7 @@ describe('transformByQ', function () {
535535
sinon.assert.calledThrice(fetchStub)
536536
})
537537

538-
it('should not retry on non-retriable error', async () => {
538+
it('should not retry upload on non-retriable error', async () => {
539539
const failedResponse = {
540540
ok: false,
541541
status: 400,

0 commit comments

Comments
 (0)