Skip to content

Commit 34a6fb3

Browse files
committed
Fix lint errors
1 parent e3ebe66 commit 34a6fb3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

note_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ func TestNote_String(t *testing.T) {
2828

2929
func TestNote_GobEncode(t *testing.T) {
3030
cases := map[string]Note{
31-
"regular note": Note{NoteTypeRegular, 15, 4, 8, "go"},
32-
"note with spaces in text": Note{NoteTypeGolden, 7, 1, -2, " hey "},
33-
"note with high numbers": Note{NoteTypeRap, 550, 20, -40, " hey "},
34-
"line break": Note{NoteTypeEndOfPhrase, 12, 0, 0, "\n"},
31+
"regular note": {NoteTypeRegular, 15, 4, 8, "go"},
32+
"note with spaces in text": {NoteTypeGolden, 7, 1, -2, " hey "},
33+
"note with high numbers": {NoteTypeRap, 550, 20, -40, " hey "},
34+
"line break": {NoteTypeEndOfPhrase, 12, 0, 0, "\n"},
3535
}
3636
for name, note := range cases {
3737
t.Run(name, func(t *testing.T) {

0 commit comments

Comments
 (0)