From c12183959a117f2e11de133ff2be57ad99795984 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 18 Oct 2025 23:59:10 +0900 Subject: [PATCH] internal/app/dispatcher: report correct field This was mistakenly reporting sharePath on inequivalence causing very confusing output. Signed-off-by: Ophestra --- internal/app/dispatcher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/dispatcher_test.go b/internal/app/dispatcher_test.go index 7e91b81..944d007 100644 --- a/internal/app/dispatcher_test.go +++ b/internal/app/dispatcher_test.go @@ -99,7 +99,7 @@ func sysUsesInstance(next extraCheckSysFunc) extraCheckSysFunc { func sysUsesRuntime(next extraCheckSysFunc) extraCheckSysFunc { return func(t *testing.T, state *outcomeStateSys) { if want := m(wantRuntimeSharePath); !reflect.DeepEqual(state.runtimeSharePath, want) { - t.Errorf("outcomeStateSys: runtimeSharePath = %v, want %v", state.sharePath, want) + t.Errorf("outcomeStateSys: runtimeSharePath = %v, want %v", state.runtimeSharePath, want) } if next != nil {