From 27fe40f725590bafdd07547bfb8e9e23377aea3b Mon Sep 17 00:00:00 2001 From: delarea Date: Thu, 21 Nov 2024 15:13:09 +0200 Subject: [PATCH] test --- nuget_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nuget_test.go b/nuget_test.go index 82a3f4bc8..93242d14c 100644 --- a/nuget_test.go +++ b/nuget_test.go @@ -160,9 +160,9 @@ func testNugetCmd(t *testing.T, projectPath, buildName, buildNumber string, expe // Add allow insecure connection for testings to work with localhost server // dotNet also uses this cmd, and we want to apply this only for Nuget. func allowInsecureConnectionForTests(projectType string, args *[]string) *[]string { - //if projectType == project.Nuget.String() { - *args = append(*args, "--allow-insecure-connections") - //} + if projectType == project.Nuget.String() { + *args = append(*args, "--allow-insecure-connections") + } log.Debug(projectType) return args }