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:01:38 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 19:01:38 +0300
commitabd27f16c7b20e57d2dea7d66c26b954dcfe9d84 (patch)
tree1b004ddbef6fe2f4fef0f72870641ff7da307105
parent5e99827f91a82d2685fcd91d885c8011deb48a0e (diff)
add TestDaysWide 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 73db29dd..1f9cd661 100644
--- a/ja_JP/ja_JP_test.go
+++ b/ja_JP/ja_JP_test.go
@@ -406,34 +406,34 @@ func TestDaysWide(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 0,
- // expected: "Sunday",
- // },
- // {
- // idx: 1,
- // expected: "Monday",
- // },
- // {
- // idx: 2,
- // expected: "Tuesday",
- // },
- // {
- // idx: 3,
- // expected: "Wednesday",
- // },
- // {
- // idx: 4,
- // expected: "Thursday",
- // },
- // {
- // idx: 5,
- // expected: "Friday",
- // },
- // {
- // idx: 6,
- // expected: "Saturday",
- // },
+ {
+ 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 {