Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
jbristowe committed Dec 18, 2020
1 parent 5caf28f commit 5e69057
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions octopusdeploy/resource_nuget_feed_test.go
Expand Up @@ -2,6 +2,7 @@ package octopusdeploy

import (
"fmt"
"strconv"
"testing"

"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
Expand Down Expand Up @@ -30,7 +31,7 @@ func TestAccOctopusDeployNugetFeedBasic(t *testing.T) {
resource.TestCheckResourceAttr(feedPrefix, "feed_uri", feedURI),
resource.TestCheckResourceAttr(feedPrefix, "username", feedUsername),
resource.TestCheckResourceAttr(feedPrefix, "password", feedPassword),
resource.TestCheckResourceAttr(feedPrefix, "is_enhanced_mode", enhancedMode),
resource.TestCheckResourceAttr(feedPrefix, "is_enhanced_mode", strconv.FormatBool(enhancedMode)),
),
},
},
Expand All @@ -43,7 +44,7 @@ func testNugetFeedBasic(name, feedURI string, feedUsername string, feedPassword
feed_uri = "%s"
username = "%s"
password = "%s"
is_enhanced_mode = %s
is_enhanced_mode = %v
}`, name, feedURI, feedUsername, feedPassword, enhancedMode)
}

Expand Down

0 comments on commit 5e69057

Please sign in to comment.