Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomocy <tomocy.dev@gmail.com>2019-04-23 19:00:35 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 19:00:35 +0300
commite979d1b67ec8e14094ff8ab4fb9b94705587d5c1 (patch)
tree269681adce67fe5a8ad83c5c9bd3b87ca4f8dc89
parent2bb7728d86861ed0cdc4764d24c09ce502772796 (diff)
add TestDaysNarrow of ja_JP
-rw-r--r--ja_JP/ja_JP_test.go56
1 files changed, 28 insertions, 28 deletions
diff --git a/ja_JP/ja_JP_test.go b/ja_JP/ja_JP_test.go
index 645091a5..d9a1fb09 100644
--- a/ja_JP/ja_JP_test.go
+++ b/ja_JP/ja_JP_test.go
@@ -298,34 +298,34 @@ func TestDaysNarrow(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 0,
- // expected: "S",
- // },
- // {
- // idx: 1,
- // expected: "M",
- // },
- // {
- // idx: 2,
- // expected: "T",
- // },
- // {
- // idx: 3,
- // expected: "W",
- // },
- // {
- // idx: 4,
- // expected: "T",
- // },
- // {
- // idx: 5,
- // expected: "F",
- // },
- // {
- // idx: 6,
- // expected: "S",
- // },
+ {
+ idx: 0,
+ expected: "日",
+ },
+ {
+ idx: 1,
+ expected: "月",
+ },
+ {
+ idx: 2,
+ expected: "火",
+ },
+ {
+ idx: 3,
+ expected: "水",
+ },
+ {
+ idx: 4,
+ expected: "木",
+ },
+ {
+ idx: 5,
+ expected: "金",
+ },
+ {
+ idx: 6,
+ expected: "土",
+ },
}
for _, tt := range tests {