fix test names

This commit is contained in:
Joel Wetzell
2026-02-08 21:49:12 -06:00
parent d0bdc44c30
commit 3688510ded
3 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ func TestGoodJsonEncode(t *testing.T) {
expected []byte
}{
{
name: "hello",
name: "basic struct",
payload: osc.OSCMessage{
Address: "/hello",
},

View File

@@ -45,7 +45,7 @@ func TestGoodStringDecode(t *testing.T) {
expected string
}{
{
name: "hello",
name: "basic string",
payload: []byte{0x68, 0x65, 0x6c, 0x6c, 0x6f},
expected: "hello",
},

View File

@@ -52,7 +52,7 @@ func TestGoodStringEncode(t *testing.T) {
expected []byte
}{
{
name: "hello",
name: "basic string",
payload: "hello",
expected: []byte{0x68, 0x65, 0x6c, 0x6c, 0x6f},
},