Skip to content

Commit 3776d1d

Browse files
authored
Merge pull request #60068 from margelo/@chrispader/fix-e2e-pipeline-output-filename-mismatch
[NoQA] fix: output filename mismatch
2 parents f47aa60 + 561ec09 commit 3776d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/compare/output/markdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const writeToMarkdown = (outputDir: string, data: Data, skippedTests: string[])
184184

185185
return Promise.all(
186186
markdownFiles.map((file, index) => {
187-
const filePath = `${outputDir}/output-${index + 1}.md`;
187+
const filePath = `${outputDir}/output${index + 1}.md`;
188188
return writeToFile(filePath, file).catch((error) => {
189189
console.error(error);
190190
throw error;

0 commit comments

Comments
 (0)