Skip to content

Commit

Permalink
Fix leaderboard_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Leao committed Mar 21, 2018
1 parent 2fd2735 commit 3373a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/leaderboard_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var _ = Describe("Leaderboard Handler", func() {
if i < 10 {
return fmt.Sprintf("0%d", i)
}
return string(i)
return fmt.Sprintf("%d", i)
}
year, week = time.Now().UTC().AddDate(0, 0, -15).ISOWeek()
lastQuarter, quarterYear = func() (int, int) {
Expand Down

0 comments on commit 3373a27

Please sign in to comment.