From 07063bc5c71e152321d62893656b5832d299f9ec Mon Sep 17 00:00:00 2001 From: Irbe Krumina Date: Thu, 20 Jun 2024 19:30:19 +0100 Subject: [PATCH] ssh/tailssh: fix integration test (#12562) Updates#cleanup Signed-off-by: Irbe Krumina --- ssh/tailssh/tailssh_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh/tailssh/tailssh_integration_test.go b/ssh/tailssh/tailssh_integration_test.go index fe317e727..62413e3a5 100644 --- a/ssh/tailssh/tailssh_integration_test.go +++ b/ssh/tailssh/tailssh_integration_test.go @@ -611,7 +611,7 @@ func (tb *testBackend) NetMap() *netmap.NetworkMap { } } -func (tb *testBackend) WhoIs(ipp netip.AddrPort) (n tailcfg.NodeView, u tailcfg.UserProfile, ok bool) { +func (tb *testBackend) WhoIs(_ string, ipp netip.AddrPort) (n tailcfg.NodeView, u tailcfg.UserProfile, ok bool) { return (&tailcfg.Node{}).View(), tailcfg.UserProfile{ LoginName: tb.localUser + "@example.com", }, true