diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-07 16:55:27 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-07 16:55:27 +0900 |
| commit | 55a5b6f242e7ca5f257a085c722f6cc9fa055b04 (patch) | |
| tree | ad235775634c34fd1cc6314df2f04a34ba08d5eb /dbus/export_test.go | |
| parent | 85407dd3c09ffbc4c102baa90249ded685badd12 (diff) | |
dbus: use name resolved by exec.Command
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'dbus/export_test.go')
| -rw-r--r-- | dbus/export_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/export_test.go b/dbus/export_test.go index dff02412..d42fde51 100644 --- a/dbus/export_test.go +++ b/dbus/export_test.go @@ -3,8 +3,8 @@ package dbus import "io" // CompareTestNew provides TestNew with comparison access to unexported Proxy fields. -func (p *Proxy) CompareTestNew(path string, session, system [2]string) bool { - return path == p.path && session == p.session && system == p.system +func (p *Proxy) CompareTestNew(session, system [2]string) bool { + return session == p.session && system == p.system } // AccessTestProxySeal provides TestProxy_Seal with access to unexported Proxy seal field. |
