Skip to content

Commit

Permalink
Merge branch 'master' into add-error-handling
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaRahmani authored Apr 13, 2024
2 parents 0385be3 + f0d709f commit 5069646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schemaregistry/mock_schemaregistry_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ type counter struct {
count int
}

func (c counter) currentValue() int {
func (c *counter) currentValue() int {
return c.count
}

func (c counter) increment() int {
func (c *counter) increment() int {
c.count++
return c.count
}
Expand Down

0 comments on commit 5069646

Please sign in to comment.