ipn/ipnlocal: fix missing defer in testExtension.Shutdown

Updates #cleanup

Signed-off-by: Nick Khyl <nickk@tailscale.com>
This commit is contained in:
Nick Khyl 2025-07-07 17:21:21 -05:00 committed by Nick Khyl
parent f1c7b463cd
commit ea4018b757

View File

@ -1230,7 +1230,7 @@ func (e *testExtension) InitCalled() bool {
func (e *testExtension) Shutdown() (err error) {
e.t.Helper()
e.mu.Lock()
e.mu.Unlock()
defer e.mu.Unlock()
if e.ShutdownHook != nil {
err = e.ShutdownHook(e)
}