Skip to content

Commit aed27f7

Browse files
committed
Fix linter issue
1 parent 8ff870a commit aed27f7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/upload-sarif.test.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,13 @@ test("processAndUploadSarif doesn't upload if upload is disabled", async (t) =>
216216
fs.writeFileSync(toFullPath("test.sarif"), "");
217217
fs.writeFileSync(toFullPath("test.quality.sarif"), "");
218218

219-
const actual = await processAndUploadSarif(logger, features, "never", "", tempDir);
219+
const actual = await processAndUploadSarif(
220+
logger,
221+
features,
222+
"never",
223+
"",
224+
tempDir,
225+
);
220226

221227
t.truthy(actual);
222228
t.assert(postProcessSarifFiles.calledTwice);

0 commit comments

Comments
 (0)