Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
werdes72 committed Jan 9, 2025
1 parent abb164a commit 1ff737e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1alpha2/compatibility_mode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ var _ = Describe("Compatibility Mode", func() {
//then
Expect(err).ShouldNot(HaveOccurred())

for fieldName, _ := range ProxyMetaDataCompatibility {
for fieldName := range ProxyMetaDataCompatibility {

Check failure on line 201 in api/v1alpha2/compatibility_mode_test.go

View workflow job for this annotation

GitHub Actions / Dispatch unit test / Lint

S1005: unnecessary assignment to the blank identifier (gosimple)
_, exist := getProxyMetadataField(out, fieldName)
Expect(exist).To(BeFalse())
}
Expand Down

0 comments on commit 1ff737e

Please sign in to comment.