Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
major codec update
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseCoretta committed May 12, 2024
1 parent 6c99de4 commit 474da97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nanf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ func TestBogusNameAndNumberForm(t *testing.T) {
}

func TestParseNaNFStr(t *testing.T) {
for idx, slice := range []string {
for idx, slice := range []string{
`cn(3)`,
`identifier(-3)`,
} {
nanf, err := parseNaNFstr(slice)
_, err := parseNaNFstr(slice)
if err != nil {
if idx%2 == 0 {
t.Errorf("%s failed: unexpected error: %v", t.Name(), err)
Expand Down

0 comments on commit 474da97

Please # to comment.