From 3ebd1464c19bf1e1098fd4c467c3000c2f393a37 Mon Sep 17 00:00:00 2001 From: kobenguyent Date: Tue, 11 Jun 2024 15:42:35 +0200 Subject: [PATCH] fix: lint issue --- src/index.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/index.ts b/src/index.ts index 316a7fc..675d4fa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -448,16 +448,16 @@ class ResembleHelper extends Helper { await this._addAttachment(baseImage, misMatch, options); await this._addMochaContext(baseImage, misMatch, options); if (awsC !== undefined) { - await this._upload( - awsC.accessKeyId, - awsC.secretAccessKey, - awsC.region, - awsC.bucketName, - baseImage, - options, - awsC.endpoint, - awsC.uploadOnlyBaseImage - ); + await this._upload( + awsC.accessKeyId, + awsC.secretAccessKey, + awsC.region, + awsC.bucketName, + baseImage, + options, + awsC.endpoint, + awsC.uploadOnlyBaseImage, + ); } this.debug(`MisMatch Percentage Calculated is ${misMatch} for baseline ${baseImage}`);