aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/dbus/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/dbus/config_test.go')
-rw-r--r--system/dbus/config_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/system/dbus/config_test.go b/system/dbus/config_test.go
index 84477e40..644c766f 100644
--- a/system/dbus/config_test.go
+++ b/system/dbus/config_test.go
@@ -11,6 +11,8 @@ import (
)
func TestConfigArgs(t *testing.T) {
+ t.Parallel()
+
for _, tc := range testCasesExt {
if tc.wantErr {
// args does not check for nulls
@@ -18,6 +20,8 @@ func TestConfigArgs(t *testing.T) {
}
t.Run("build arguments for "+tc.id, func(t *testing.T) {
+ t.Parallel()
+
if got := dbus.Args(tc.c, tc.bus); !slices.Equal(got, tc.want) {
t.Errorf("Args: %v, want %v", got, tc.want)
}
@@ -26,6 +30,7 @@ func TestConfigArgs(t *testing.T) {
}
func TestNewConfig(t *testing.T) {
+ t.Parallel()
ids := [...]string{"org.chromium.Chromium", "dev.vencord.Vesktop"}
type newTestCase struct {
@@ -107,6 +112,8 @@ func TestNewConfig(t *testing.T) {
}
t.Run(name.String(), func(t *testing.T) {
+ t.Parallel()
+
if gotC := dbus.NewConfig(tc.id, tc.args[0], tc.args[1]); !reflect.DeepEqual(gotC, tc.want) {
t.Errorf("NewConfig(%q, %t, %t) = %v, want %v",
tc.id, tc.args[0], tc.args[1],