From e2e795e87501973e11e5770e89e604ac25f253f4 Mon Sep 17 00:00:00 2001 From: tomocy Date: Wed, 24 Apr 2019 00:45:43 +0900 Subject: add test TestDaysNarrow of ja --- ja/ja_test.go | 56 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/ja/ja_test.go b/ja/ja_test.go index fc669c45..ff2c5a8d 100644 --- a/ja/ja_test.go +++ b/ja/ja_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 { -- cgit v1.2.3