1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-08-10 22:31:50 +02:00

Update golangci-lint to v1.48.0 (#3105)

* Update golangci-lint to v1.48.0

Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com>
This commit is contained in:
Aaron Clawson
2022-08-24 21:42:28 -05:00
committed by GitHub
parent 09bf345912
commit 8423364f5a
21 changed files with 279 additions and 380 deletions

View File

@@ -185,6 +185,6 @@ func TestLookup(t *testing.T) {
require.True(t, has)
require.Equal(t, int64(1), value.AsInt64())
value, has = set.Value("D")
_, has = set.Value("D")
require.False(t, has)
}