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:31:18 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-24 06:31:18 +0300
commita0d81a2e08fcc07883c0b25ea6661203e77b7703 (patch)
tree692f5a02239a8ae53b311ed397f2e80b4a605008
parent7ff285724ce8673d3706b9bd37c6f0e6a4bf8975 (diff)
add TestFmtTimeMedium of ja
-rw-r--r--ja/ja_test.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/ja/ja_test.go b/ja/ja_test.go
index 0c490058..726922da 100644
--- a/ja/ja_test.go
+++ b/ja/ja_test.go
@@ -704,14 +704,14 @@ func TestFmtTimeMedium(t *testing.T) {
t time.Time
expected string
}{
- // {
- // t: time.Date(2016, 02, 03, 9, 5, 1, 0, time.UTC),
- // expected: "9:05:01 am",
- // },
- // {
- // t: time.Date(2016, 02, 03, 20, 5, 1, 0, time.UTC),
- // expected: "8:05:01 pm",
- // },
+ {
+ t: time.Date(2016, 02, 03, 9, 5, 1, 0, time.UTC),
+ expected: "9:05:01",
+ },
+ {
+ t: time.Date(2016, 02, 03, 20, 5, 1, 0, time.UTC),
+ expected: "20:05:01",
+ },
}
trans := New()