Skip to content

Commit f86df75

Browse files
committed
fix age_group_service_test ages is int now
1 parent 2540092 commit f86df75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/age_group_service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ func TestSetAgesForAgeGroup(t *testing.T) {
1616

1717
SetAgesForAgeGroup(&group)
1818

19-
assert.Equal(t, []string{"2002", "2003", "2004"}, group.Ages)
19+
assert.Equal(t, []int{2002, 2003, 2004}, group.Ages)
2020
}

0 commit comments

Comments
 (0)