Skip to content

Commit 72f3b84

Browse files
committed
more tests
1 parent c413a8f commit 72f3b84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

text_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ func TestTextConverterStringToBytes(t *testing.T) {
1818
{
1919
name: "empty",
2020
input: "",
21-
output: []byte{},
21+
output: outputType{},
2222
},
2323
{
2424
name: "non-empty",
2525
input: "hello",
26-
output: []byte{'h', 'e', 'l', 'l', 'o'},
26+
output: outputType{'h', 'e', 'l', 'l', 'o'},
2727
},
2828
}
2929

0 commit comments

Comments
 (0)