From eb2b896c4ca2f48f67b1bb96bd26964d81300f3e Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Tue, 10 Mar 2026 20:14:47 -0400 Subject: [PATCH] One more linting fix --- .../artifact/__tests__/download-artifact.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/artifact/__tests__/download-artifact.test.ts b/packages/artifact/__tests__/download-artifact.test.ts index c2cbf141..1e4d8d1e 100644 --- a/packages/artifact/__tests__/download-artifact.test.ts +++ b/packages/artifact/__tests__/download-artifact.test.ts @@ -1051,12 +1051,12 @@ describe('download-artifact', () => { }) it.each([ - ['土', '_'], // U+571F - known to cause 400 errors - ['日', '_'], // U+65E5 - reported to work fine - ['中文测试', '____'], // multiple Chinese characters - ['文件-2026年', '__-2026_'], // mixed Chinese and numbers - ['データ', '___'], // Japanese katakana - ['테스트', '___'] // Korean characters + ['土', '_'], // U+571F - known to cause 400 errors + ['日', '_'], // U+65E5 - reported to work fine + ['中文测试', '____'], // multiple Chinese characters + ['文件-2026年', '__-2026_'], // mixed Chinese and numbers + ['データ', '___'], // Japanese katakana + ['테스트', '___'] // Korean characters ])( 'should prefer filename* over filename for non-ASCII character %s (%s)', async (chars, asciiReplacement) => {