Fix go-staticcheck S1021 issues

This commit is contained in:
Ash McKenzie 2023-06-03 13:31:39 +10:00
parent 2f72d325dc
commit 80d649c2d1
No known key found for this signature in database
GPG Key ID: A1253B4953E8D3E6
1 changed files with 1 additions and 2 deletions

View File

@ -544,8 +544,7 @@ func TestParseLevel(t *testing.T) {
} }
func TestLevelString(t *testing.T) { func TestLevelString(t *testing.T) {
var loggerlevel Level var loggerlevel Level = 32000
loggerlevel = 32000
_ = loggerlevel.String() _ = loggerlevel.String()
} }