Fix linter issue

This commit is contained in:
Michael B. Gale
2025-10-22 19:25:34 +01:00
parent 8ff870a6c2
commit aed27f7231

View File

@@ -216,7 +216,13 @@ test("processAndUploadSarif doesn't upload if upload is disabled", async (t) =>
fs.writeFileSync(toFullPath("test.sarif"), "");
fs.writeFileSync(toFullPath("test.quality.sarif"), "");
const actual = await processAndUploadSarif(logger, features, "never", "", tempDir);
const actual = await processAndUploadSarif(
logger,
features,
"never",
"",
tempDir,
);
t.truthy(actual);
t.assert(postProcessSarifFiles.calledTwice);