aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/dbus/address_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/dbus/address_test.go')
-rw-r--r--system/dbus/address_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/dbus/address_test.go b/system/dbus/address_test.go
index 6bd0627b..5de90535 100644
--- a/system/dbus/address_test.go
+++ b/system/dbus/address_test.go
@@ -9,6 +9,8 @@ import (
)
func TestParse(t *testing.T) {
+ t.Parallel()
+
testCases := []struct {
name string
addr string
@@ -109,6 +111,8 @@ func TestParse(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
+ t.Parallel()
+
if got, err := dbus.Parse([]byte(tc.addr)); !errors.Is(err, tc.wantErr) {
t.Errorf("Parse() error = %v, wantErr %v", err, tc.wantErr)
} else if tc.wantErr == nil && !reflect.DeepEqual(got, tc.want) {