Skip to content

Commit

Permalink
fix 秋分の日 振替休日
Browse files Browse the repository at this point in the history
  • Loading branch information
winebarrel committed Nov 14, 2024
1 parent 6c8a305 commit 1e95b49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions client_between_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestClientBetween(_t *testing.T) {
{"2024-08-12", "休日"},
{"2024-09-16", "敬老の日"},
{"2024-09-22", "秋分の日"},
{"2024-09-23", "秋分の日 振替休日"},
{"2024-09-23", "休日"},
{"2024-10-14", "スポーツの日"},
{"2024-11-03", "文化の日"},
{"2024-11-04", "休日"},
Expand All @@ -64,7 +64,7 @@ func TestClientBetween(_t *testing.T) {
{"2024-08-12", "休日"},
{"2024-09-16", "敬老の日"},
{"2024-09-22", "秋分の日"},
{"2024-09-23", "秋分の日 振替休日"},
{"2024-09-23", "休日"},
{"2024-10-14", "スポーツの日"},
{"2024-11-03", "文化の日"},
{"2024-11-04", "休日"},
Expand Down Expand Up @@ -119,7 +119,7 @@ func TestClientBetween_UTC(_t *testing.T) {
{"2024-08-12", "休日"},
{"2024-09-16", "敬老の日"},
{"2024-09-22", "秋分の日"},
{"2024-09-23", "秋分の日 振替休日"},
{"2024-09-23", "休日"},
{"2024-10-14", "スポーツの日"},
{"2024-11-03", "文化の日"},
{"2024-11-04", "休日"},
Expand Down
8 changes: 4 additions & 4 deletions client_get_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestClientGet(_t *testing.T) {
{"2024-08-12 00:00:00", "2024-08-12", "休日"},
{"2024-09-16 00:00:00", "2024-09-16", "敬老の日"},
{"2024-09-22 00:00:00", "2024-09-22", "秋分の日"},
{"2024-09-23 00:00:00", "2024-09-23", "秋分の日 振替休日"},
{"2024-09-23 00:00:00", "2024-09-23", "休日"},
{"2024-10-14 00:00:00", "2024-10-14", "スポーツの日"},
{"2024-11-03 00:00:00", "2024-11-03", "文化の日"},
{"2024-11-04 00:00:00", "2024-11-04", "休日"},
Expand All @@ -56,7 +56,7 @@ func TestClientGet(_t *testing.T) {
{"2024-08-12 23:59:59", "2024-08-12", "休日"},
{"2024-09-16 23:59:59", "2024-09-16", "敬老の日"},
{"2024-09-22 23:59:59", "2024-09-22", "秋分の日"},
{"2024-09-23 23:59:59", "2024-09-23", "秋分の日 振替休日"},
{"2024-09-23 23:59:59", "2024-09-23", "休日"},
{"2024-10-14 23:59:59", "2024-10-14", "スポーツの日"},
{"2024-11-03 23:59:59", "2024-11-03", "文化の日"},
{"2024-11-04 23:59:59", "2024-11-04", "休日"},
Expand Down Expand Up @@ -136,7 +136,7 @@ func TestClientGet_UTC(_t *testing.T) {
{"2024-08-12 00:00:00", "2024-08-12", "休日"},
{"2024-09-16 00:00:00", "2024-09-16", "敬老の日"},
{"2024-09-22 00:00:00", "2024-09-22", "秋分の日"},
{"2024-09-23 00:00:00", "2024-09-23", "秋分の日 振替休日"},
{"2024-09-23 00:00:00", "2024-09-23", "休日"},
{"2024-10-14 00:00:00", "2024-10-14", "スポーツの日"},
{"2024-11-03 00:00:00", "2024-11-03", "文化の日"},
{"2024-11-04 00:00:00", "2024-11-04", "休日"},
Expand All @@ -157,7 +157,7 @@ func TestClientGet_UTC(_t *testing.T) {
{"2024-08-12 14:59:59", "2024-08-12", "休日"},
{"2024-09-16 14:59:59", "2024-09-16", "敬老の日"},
{"2024-09-22 14:59:59", "2024-09-22", "秋分の日"},
{"2024-09-23 14:59:59", "2024-09-23", "秋分の日 振替休日"},
{"2024-09-23 14:59:59", "2024-09-23", "休日"},
{"2024-10-14 14:59:59", "2024-10-14", "スポーツの日"},
{"2024-11-03 14:59:59", "2024-11-03", "文化の日"},
{"2024-11-04 14:59:59", "2024-11-04", "休日"},
Expand Down

0 comments on commit 1e95b49

Please sign in to comment.