Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
abo committed May 27, 2016
1 parent 8c81d75 commit f20ca7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions counter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ func init() {

func TestBuckets(t *testing.T) {
testcases := map[int][]int{
1: []int{1, 0, 10, 9, 8, 7, 6, 5, 4, 3},
0: []int{0, 10, 9, 8, 7, 6, 5, 4, 3, 2},
10: []int{10, 9, 8, 7, 6, 5, 4, 3, 2, 1},
1: {1, 0, 10, 9, 8, 7, 6, 5, 4, 3},
0: {0, 10, 9, 8, 7, 6, 5, 4, 3, 2},
10: {10, 9, 8, 7, 6, 5, 4, 3, 2, 1},
}

counter := NewCounter(pool, "rerate:test:counter:buckets", 10*time.Second, time.Second)
Expand Down

0 comments on commit f20ca7d

Please sign in to comment.