Skip to content
This repository has been archived by the owner on Oct 17, 2018. It is now read-only.

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Chao Wang committed Oct 12, 2017
1 parent 4ba1d27 commit ab3d3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggregator/options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func TestOptionsSetDefaultTimerAggregationTypes(t *testing.T) {
o := NewOptions().SetDefaultTimerAggregationTypes(aggTypes)
require.Equal(t, aggTypes, o.DefaultTimerAggregationTypes())
require.Equal(t, []float64{0.99, 0.9999}, o.TimerQuantiles())
require.Equal(t, [][]byte{[]byte(".mean"), []byte(".sum_sq"), []byte(".p99"), []byte(".p99.99")}, o.DefaultTimerAggregationSuffixes())
require.Equal(t, [][]byte{[]byte(".mean"), []byte(".sum_sq"), []byte(".p99"), []byte(".p9999")}, o.DefaultTimerAggregationSuffixes())
}

func TestOptionsSetDefaultGaugeAggregationTypes(t *testing.T) {
Expand Down

0 comments on commit ab3d3ed

Please sign in to comment.