Skip to content

Commit

Permalink
chore: fix two more occurrences
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz committed Nov 5, 2024
1 parent 08a3f69 commit a415c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/aip0133/method_signature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func TestMethodSignature(t *testing.T) {
}
`)
if diff := (testutils.Problems{}).Diff(methodSignature.Lint(file)); diff != "" {
t.Errorf(diff)
t.Error(diff)
}
})
// Add a separate test for the non-standard resource field case rather than
Expand Down Expand Up @@ -181,7 +181,7 @@ func TestMethodSignature(t *testing.T) {
},
}
if diff := want.Diff(methodSignature.Lint(file)); diff != "" {
t.Errorf(diff)
t.Error(diff)
}
})
}

0 comments on commit a415c52

Please sign in to comment.