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-24 06:26:57 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-24 06:26:57 +0300
commit33f4c7152ac47dc38c7628ccbb28825c8e6de103 (patch)
treee2a296a29919edbed4cc74b6943a24953d7fad84
parentacc1e833b88cef500491d9a4c5867270b5fedda9 (diff)
add TestCardinalPlurals of ja
-rw-r--r--ja/ja_test.go15
1 files changed, 5 insertions, 10 deletions
diff --git a/ja/ja_test.go b/ja/ja_test.go
index 20f5f1fd..021fb49d 100644
--- a/ja/ja_test.go
+++ b/ja/ja_test.go
@@ -181,16 +181,11 @@ func TestCardinalPlurals(t *testing.T) {
v uint64
expected locales.PluralRule
}{
- // {
- // num: 1,
- // v: 0,
- // expected: locales.PluralRuleOne,
- // },
- // {
- // num: 4,
- // v: 0,
- // expected: locales.PluralRuleOther,
- // },
+ {
+ num: 1,
+ v: 0,
+ expected: locales.PluralRuleOther,
+ },
}
for _, tt := range tests {