Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RavinderReddyF5 committed Jun 18, 2024
1 parent a776231 commit 8966795
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bigip/resource_bigip_as3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ func testCheckAS3AppExists(tenantName, appNames string, exists bool) resource.Te
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}
client := &http.Client{Transport: tr}

for _, appName := range strings.Split(appNames, ",") {
url := clientBigip.Host + "/mgmt/shared/appsvcs/declare/" + tenantName + "/applications/" + appName
req, err := http.NewRequest("GET", url, nil)
Expand Down Expand Up @@ -568,6 +567,8 @@ func TestAccBigipPer_AppAs3_update_addApplication(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testCheckAs3Exists("dmz", true),
testCheckAS3AppExists("dmz", "path_app1", true),
testCheckAs3Exists("dmztest", false),
testCheckAS3AppExists("dmztest", "path_app1", false),
),
},
{
Expand Down

0 comments on commit 8966795

Please sign in to comment.