Skip to content

Commit

Permalink
merge latest and update
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacCalligeros95 committed Jul 31, 2024
1 parent aa4879a commit e75f115
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions octopusdeploy/testing_container_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ func (suite *IntegrationTestSuite) SetupSuite() {
if suite.err != nil {
log.Printf("Failed to create client: (%s)", suite.err.Error())
}
octoContainer = &test.OctopusContainer{
Container: nil,
URI: url,
}
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions octopusdeploy_framework/resource_tenant_project_variable_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package octopusdeploy
package octopusdeploy_framework

import (
"fmt"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
"github.com/hashicorp/terraform-plugin-testing/helper/acctest"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"github.com/hashicorp/terraform-plugin-testing/terraform"
"strings"
)

Expand Down Expand Up @@ -35,7 +35,7 @@ func (suite *IntegrationTestSuite) TestAccTenantProjectVariableBasic() {

resource.Test(suite.T(), resource.TestCase{
CheckDestroy: testAccTenantProjectVariableCheckDestroy,
PreCheck: func() { testAccPreCheck(suite.T()) },
PreCheck: func() { TestAccPreCheck(suite.T()) },
ProtoV6ProviderFactories: ProtoV6ProviderFactories(),
Steps: []resource.TestStep{
{
Expand Down
4 changes: 4 additions & 0 deletions octopusdeploy_framework/testing_container_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ func (suite *IntegrationTestSuite) SetupSuite() {
if suite.err != nil {
log.Printf("Failed to create client: (%s)", suite.err.Error())
}
octoContainer = &test.OctopusContainer{
Container: nil,
URI: url,
}
}
}
}
Expand Down

0 comments on commit e75f115

Please sign in to comment.