From 9b8939eb5b6f7369294cd994b3aaaa9ea440fbbd Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Wed, 5 Aug 2026 01:41:30 +0000 Subject: [PATCH] hotfix(ipvanish): fix lint error so CI can pass --- internal/provider/ipvanish/updater/servers_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/provider/ipvanish/updater/servers_test.go b/internal/provider/ipvanish/updater/servers_test.go index 39c2c10f..10d57296 100644 --- a/internal/provider/ipvanish/updater/servers_test.go +++ b/internal/provider/ipvanish/updater/servers_test.go @@ -196,12 +196,12 @@ func Test_Updater_GetServers(t *testing.T) { unzipper := common.NewMockUnzipper(ctrl) const zipURL = "https://configs.ipvanish.com/openvpn/v2.6.0-0/configs.zip" // Context is wrapped with User-Agent for ipvanish, so use Any() for the ctx arg - unzipper.EXPECT().FetchAndExtract(gomock.Any(), zipURL). //nolint:dogsled + unzipper.EXPECT().FetchAndExtract(gomock.Any(), zipURL). Return(testCase.unzipContents, testCase.unzipErr) parallelResolver := common.NewMockParallelResolver(ctrl) if testCase.expectResolve { - parallelResolver.EXPECT().Resolve(gomock.Any(), testCase.resolverSettings). //nolint:dogsled + parallelResolver.EXPECT().Resolve(gomock.Any(), testCase.resolverSettings). Return(testCase.hostToIPs, testCase.resolveWarnings, testCase.resolveErr) }