Skip to content

Commit

Permalink
address linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
QxBytes committed Jan 21, 2025
1 parent 55c1158 commit e11864a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions npm/pkg/dataplane/ipsets/ipsetmanager_windows_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package ipsets

import (
"fmt"
"sort"
"strings"
"testing"
Expand Down Expand Up @@ -388,7 +387,7 @@ func verifyHNSCache(t *testing.T, expected map[string]hcn.SetPolicySetting, hns
copyOfCachedObj := *cacheObj
copyOfCachedObj.Values = strings.Join(members, ",")

require.Equal(t, setObj, copyOfCachedObj, fmt.Sprintf("%s mismatch in cache", setName))
require.Equal(t, setObj, copyOfCachedObj, setName+" mismatch in cache")
}
}

Expand Down

0 comments on commit e11864a

Please sign in to comment.