Skip to content

Commit ab09ae3

Browse files
pedjakclaude
andcommitted
fix(e2e): remove named returns to satisfy nonamedreturns linter
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c317ebe commit ab09ae3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e/steps/steps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1794,7 +1794,7 @@ func ResourceHasAnnotations(ctx context.Context, resourceName string, table *god
17941794

17951795
// matchLabels checks that actual labels contain all expected key-value pairs.
17961796
// Returns the first mismatched key, the actual value, and false if a mismatch is found.
1797-
func matchLabels(actual, expected map[string]string) (key, got string, ok bool) {
1797+
func matchLabels(actual, expected map[string]string) (string, string, bool) {
17981798
for k, v := range expected {
17991799
if a, found := actual[k]; !found || a != v {
18001800
return k, a, false

0 commit comments

Comments
 (0)