From 3df416955ce85ba1254e3833b123ec06a629be55 Mon Sep 17 00:00:00 2001 From: delarea Date: Thu, 14 Nov 2024 13:13:35 +0200 Subject: [PATCH] remove duplication --- nuget_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuget_test.go b/nuget_test.go index 5ac497fb9..c95c39a5b 100644 --- a/nuget_test.go +++ b/nuget_test.go @@ -108,7 +108,7 @@ func TestNuGetWithGlobalConfig(t *testing.T) { err = createConfigFileForTest([]string{jfrogHomeDir}, tests.NugetRemoteRepo, "", t, project.Nuget, true) assert.NoError(t, err) // allow insecure connection for testings to work with localhost server - testNugetCmd(t, projectPath, tests.NuGetBuildName, "1", []string{"packagesconfig"}, []string{"nuget", "restore", "--allow-insecure-connections"}, []int{6}, project.Nuget.String()) + testNugetCmd(t, projectPath, tests.NuGetBuildName, "1", []string{"packagesconfig"}, []string{"nuget", "restore"}, []int{6}, project.Nuget.String()) cleanTestsHomeEnv() }