File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/test/codewhisperer/commands Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments