Skip to content

Commit

Permalink
chore: fix go report card (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrwiersma authored May 29, 2023
1 parent b547c9a commit 45112d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img alt="Logo" src="http://svg.wiersma.co.za/hamba/project?title=avro&tag=A%20fast%20Go%20avro%20codec">
</picture>

[![Go Report Card](https://goreportcard.com/badge/github.com/hamba/avro)](https://goreportcard.com/report/github.com/hamba/avro)
[![Go Report Card](https://goreportcard.com/badge/github.com/hamba/avro/v2)](https://goreportcard.com/report/github.com/hamba/avro/v2)
[![Build Status](https://github.com/hamba/avro/actions/workflows/test.yml/badge.svg)](https://github.com/hamba/avro/actions)
[![Coverage Status](https://coveralls.io/repos/github/hamba/avro/badge.svg?branch=main)](https://coveralls.io/github/hamba/avro?branch=main)
[![Go Reference](https://pkg.go.dev/badge/github.com/hamba/avro/v2.svg)](https://pkg.go.dev/github.com/hamba/avro/v2)
Expand Down
2 changes: 1 addition & 1 deletion registry/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ func TestClient_IsRegisteredWithRefs(t *testing.T) {

assert.Contains(t, decoded, "references")
refs, ok := decoded["references"].([]any)
require.True(t, true)
require.True(t, ok)
require.Len(t, refs, 1)
ref, ok := refs[0].(map[string]any)
require.True(t, ok)
Expand Down

0 comments on commit 45112d0

Please sign in to comment.