From 55a5b6f242e7ca5f257a085c722f6cc9fa055b04 Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Mon, 7 Oct 2024 16:55:27 +0900 Subject: dbus: use name resolved by exec.Command Signed-off-by: Ophestra Umiker --- dbus/export_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbus/export_test.go') 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. -- cgit v1.3.1