Skip to content

Commit

Permalink
chore: fix stringer error (#1510)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
yquansah and kodiakhq[bot] authored Apr 18, 2023
1 parent 2f41870 commit c289696
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/server/middleware/grpc/support_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,10 @@ func (a *auditSinkSpy) SendAudits(es []audit.Event) error {
return nil
}

func (a *auditSinkSpy) String() string {
return "auditSinkSpy"
}

func (a *auditSinkSpy) Close() error { return nil }

type auditExporterSpy struct {
Expand Down

0 comments on commit c289696

Please sign in to comment.