Skip to content

Commit

Permalink
Fix the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien committed May 30, 2023
1 parent 446e7d6 commit 986db71
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions output/cloud/expv2/sink_test.go
Expand Up @@ -24,6 +24,8 @@ func TestNewSink(t *testing.T) {
}

func TestCounterAdd(t *testing.T) {
t.Parallel()

c := counter{}
c.Add(2.3)
assert.Equal(t, 2.3, c.Sum)
Expand All @@ -33,6 +35,8 @@ func TestCounterAdd(t *testing.T) {
}

func TestGaugeAdd(t *testing.T) {
t.Parallel()

g := gauge{}
g.Add(28)

Expand Down Expand Up @@ -61,6 +65,8 @@ func TestGaugeAdd(t *testing.T) {
}

func TestRateAdd(t *testing.T) {
t.Parallel()

r := rate{}
r.Add(91)

Expand Down

0 comments on commit 986db71

Please sign in to comment.