Skip to content

Commit

Permalink
Fix lint error merged into head (#13852)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
bogdandrutu authored Sep 2, 2022
1 parent 419bd3a commit 593fa65
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pkg/telemetryquerylanguage/tql/compare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ import (

// Our types are bool, int, float, string, Bytes, nil, so we compare all types in both directions.
var (
ta = false
tb = true
sa = "1"
sb = "2"
sn = ""
ba = []byte("1")
bb = []byte("2")
bn []byte = nil
i64a = int64(1)
i64b = int64(2)
f64a = float64(1)
f64b = float64(2)
ta = false
tb = true
sa = "1"
sb = "2"
sn = ""
ba = []byte("1")
bb = []byte("2")
bn []byte
i64a = int64(1)
i64b = int64(2)
f64a = float64(1)
f64b = float64(2)
)

type testA struct {
Expand Down

0 comments on commit 593fa65

Please sign in to comment.