aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/dbus/address_escape_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/dbus/address_escape_test.go')
-rw-r--r--system/dbus/address_escape_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/dbus/address_escape_test.go b/system/dbus/address_escape_test.go
index 3ea2cd26..4ef48f8b 100644
--- a/system/dbus/address_escape_test.go
+++ b/system/dbus/address_escape_test.go
@@ -5,6 +5,8 @@ import (
)
func TestUnescapeValue(t *testing.T) {
+ t.Parallel()
+
testCases := []struct {
value string
want string
@@ -45,6 +47,8 @@ func TestUnescapeValue(t *testing.T) {
for _, tc := range testCases {
t.Run("unescape "+tc.value, func(t *testing.T) {
+ t.Parallel()
+
if got, errno := unescapeValue([]byte(tc.value)); errno != tc.wantErr {
t.Errorf("unescapeValue() errno = %v, wantErr %v", errno, tc.wantErr)
} else if tc.wantErr == errSuccess && string(got) != tc.want {