summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbt90 <btom1990@googlemail.com>2024-01-24 13:17:16 +0000
committerbt90 <btom1990@googlemail.com>2024-01-24 13:17:16 +0000
commit3b8f86bc0668e45d7f8f2059843f0446a2d3b2de (patch)
tree8ad8a4c05ac86471992b37d653a82470891c8031
parentb2a1dd2c3ae834820b8c72519e4bbf5c50dc2b6e (diff)
Rename testcases
-rw-r--r--lib/fs/folding_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/fs/folding_test.go b/lib/fs/folding_test.go
index 82136ac91..b25ea493f 100644
--- a/lib/fs/folding_test.go
+++ b/lib/fs/folding_test.go
@@ -54,11 +54,11 @@ var asciiCases = []struct {
result caseType
resultName string
}{
- {"img_202401241010.jpg", asciiLower, "lowercase ASCII"},
- {"IMG_202401241010.jpg", asciiMixed, "mixedcase ASCII"},
- {"übernahme angebot.xlsx", nonAscii, "lowercase unicode"},
- {"Übernahme Angebot.xlsx", nonAscii, "mixedcase unicode"},
- {"ウェブの国際化.html", nonAscii, "multibyte unicode"},
+ {"img_202401241010.jpg", asciiLower, "ASCII lowercase"},
+ {"IMG_202401241010.jpg", asciiMixed, "ASCII mixedcase"},
+ {"übernahme angebot.xlsx", nonAscii, "Unicode lowercase"},
+ {"Übernahme Angebot.xlsx", nonAscii, "Unicode mixedcase"},
+ {"ウェブの国際化.html", nonAscii, "Unicode multibyte"},
}
func TestCheckCase(t *testing.T) {