File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
storage-blob-track-1/test Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ export class StorageBlobListTest extends StorageBlobTest<StorageBlobListTestOpti
2222 public async globalSetup ( ) {
2323 await super . globalSetup ( ) ;
2424 await executeParallel (
25- async ( count : number , parallelIndex : number ) => {
25+ async ( _count : number , _parallelIndex : number ) => {
2626 const blockBlobClient = BlockBlobURL . fromContainerURL ( this . containerClient , generateUuid ( ) ) ;
2727 blockBlobClient . upload ( Aborter . none , Buffer . alloc ( 0 ) , 0 ) ;
28- console . log ( `[` + parallelIndex + `] ` + count ) ;
2928 } ,
3029 this . parsedOptions . count . value ! ,
3130 32
Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ export class StorageBlobListTest extends StorageBlobTest<StorageBlobListTestOpti
2121 public async globalSetup ( ) {
2222 await super . globalSetup ( ) ;
2323 await executeParallel (
24- async ( count : number , parallelIndex : number ) => {
24+ async ( _count : number , _parallelIndex : number ) => {
2525 await this . containerClient . uploadBlockBlob ( generateUuid ( ) , Buffer . alloc ( 0 ) , 0 ) ;
26- console . log ( `[` + parallelIndex + `] ` + count ) ;
2726 } ,
2827 this . parsedOptions . count . value ! ,
2928 32
You can’t perform that action at this time.
0 commit comments