aboutsummaryrefslogtreecommitdiffhomepage
path: root/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'dbus')
-rw-r--r--dbus/dbus_test.go9
-rw-r--r--dbus/samples_test.go1
2 files changed, 9 insertions, 1 deletions
diff --git a/dbus/dbus_test.go b/dbus/dbus_test.go
index b1d46690..8397aff4 100644
--- a/dbus/dbus_test.go
+++ b/dbus/dbus_test.go
@@ -137,6 +137,15 @@ func testProxyStartWaitCloseString(t *testing.T, sandbox bool) {
}
})
+ t.Run("unsealed start of "+id, func(t *testing.T) {
+ want := "proxy not sealed"
+ if err := p.Start(nil, nil, sandbox); err == nil || err.Error() != want {
+ t.Errorf("Start() error = %v, wantErr %q",
+ err, errors.New(want))
+ return
+ }
+ })
+
t.Run("unsealed wait of "+id, func(t *testing.T) {
wantErr := "proxy not started"
if err := p.Wait(); err == nil || err.Error() != wantErr {
diff --git a/dbus/samples_test.go b/dbus/samples_test.go
index b8873932..87fe46e6 100644
--- a/dbus/samples_test.go
+++ b/dbus/samples_test.go
@@ -175,7 +175,6 @@ func testCaseGenerate() {
// inject nulls
fi := &testCasesV[len(samples)+i]
fi.wantErr = true
- fi.c = &*fi.c
injectNulls(&fi.c.See)
injectNulls(&fi.c.Talk)