From b1da83e5165f938453fbb21e748bca317b08239d Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sun, 21 Dec 2025 09:24:07 +0200 Subject: [PATCH] fixed comment typo --- tools/filesystem/file_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/filesystem/file_test.go b/tools/filesystem/file_test.go index 904c2a07..b5bca2ce 100644 --- a/tools/filesystem/file_test.go +++ b/tools/filesystem/file_test.go @@ -218,7 +218,7 @@ func TestFileNameNormalizations(t *testing.T) { {".abcd.123.", `^abcd_\w{10}\.123$`}, {"a b! c d . 456", `^a_b_c_d_\w{10}\.456$`}, // normalize spaces {strings.Repeat("a", 101) + "." + strings.Repeat("b", 21), `^a{100}_\w{10}\.b{20}$`}, // name and extension length cut - {"abc" + strings.Repeat("d", 290) + "." + strings.Repeat("b", 9), `^d{100}_\w{10}\.b{9}$`}, // initial total lenght cut + {"abc" + strings.Repeat("d", 290) + "." + strings.Repeat("b", 9), `^d{100}_\w{10}\.b{9}$`}, // initial total length cut } for i, s := range scenarios {