fix(core): remove unused fields from test struct

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Snider 2026-02-04 12:04:41 +00:00
parent 4cd0cf14a3
commit 80f23ba9b9

View file

@ -114,10 +114,7 @@ func TestServiceManager_LockNotAppliedWithoutEnable_Good(t *testing.T) {
assert.NoError(t, err)
}
type mockFullLifecycle struct {
startOrder int
stopOrder int
}
type mockFullLifecycle struct{}
func (m *mockFullLifecycle) OnStartup(_ context.Context) error { return nil }
func (m *mockFullLifecycle) OnShutdown(_ context.Context) error { return nil }