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:02:46 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 19:02:46 +0300
commit84ef27f6dc9e1cb2e66429a1e084dd4ad3483c24 (patch)
treed81308e120350c6cb9df36f377ef9a7c5b471ced
parent7208a6e9f69634514c3713347db665791935da0a (diff)
add TestMonthsNarrow of ja_JP
-rw-r--r--ja_JP/ja_JP_test.go96
1 files changed, 48 insertions, 48 deletions
diff --git a/ja_JP/ja_JP_test.go b/ja_JP/ja_JP_test.go
index c4d5c6e2..db9a1313 100644
--- a/ja_JP/ja_JP_test.go
+++ b/ja_JP/ja_JP_test.go
@@ -534,54 +534,54 @@ func TestMonthsNarrow(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 1,
- // expected: "J",
- // },
- // {
- // idx: 2,
- // expected: "F",
- // },
- // {
- // idx: 3,
- // expected: "M",
- // },
- // {
- // idx: 4,
- // expected: "A",
- // },
- // {
- // idx: 5,
- // expected: "M",
- // },
- // {
- // idx: 6,
- // expected: "J",
- // },
- // {
- // idx: 7,
- // expected: "J",
- // },
- // {
- // idx: 8,
- // expected: "A",
- // },
- // {
- // idx: 9,
- // expected: "S",
- // },
- // {
- // idx: 10,
- // expected: "O",
- // },
- // {
- // idx: 11,
- // expected: "N",
- // },
- // {
- // idx: 12,
- // expected: "D",
- // },
+ {
+ idx: 1,
+ expected: "1",
+ },
+ {
+ idx: 2,
+ expected: "2",
+ },
+ {
+ idx: 3,
+ expected: "3",
+ },
+ {
+ idx: 4,
+ expected: "4",
+ },
+ {
+ idx: 5,
+ expected: "5",
+ },
+ {
+ idx: 6,
+ expected: "6",
+ },
+ {
+ idx: 7,
+ expected: "7",
+ },
+ {
+ idx: 8,
+ expected: "8",
+ },
+ {
+ idx: 9,
+ expected: "9",
+ },
+ {
+ idx: 10,
+ expected: "10",
+ },
+ {
+ idx: 11,
+ expected: "11",
+ },
+ {
+ idx: 12,
+ expected: "12",
+ },
}
for _, tt := range tests {