fix: add parallel options for unit test

This commit is contained in:
moonD4rk
2023-05-08 19:22:55 +08:00
parent a685be362b
commit 6351e74f16
@@ -20,6 +20,7 @@ var testCases = []struct {
} }
func TestLocalStorageKeyToUTF8(t *testing.T) { func TestLocalStorageKeyToUTF8(t *testing.T) {
t.Parallel()
for _, tc := range testCases { for _, tc := range testCases {
actual, err := convertUTF16toUTF8(tc.in, unicode.BigEndian) actual, err := convertUTF16toUTF8(tc.in, unicode.BigEndian)
if err != nil { if err != nil {