Skip to content

Commit

Permalink
test: updates to allow #1102 to be merged
Browse files Browse the repository at this point in the history
These are some changes to tests that when merged with PR #1102 will hopefully allow the tests to continue working.
  • Loading branch information
blgm committed Oct 7, 2024
1 parent 543d82c commit 6eb881b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkg/providers/tf/deployment_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,9 @@ var _ = Describe("DeploymentManager", func() {
By("checking that the modules and instances are updated, but the state remains the same")
expectedWorkspace := &workspace.TerraformWorkspace{
Modules: []workspace.ModuleDefinition{{
Name: "brokertemplate",
Definition: template,
Name: "brokertemplate",
Definition: template,
Definitions: map[string]string{},
}},
Instances: []workspace.ModuleInstance{{
ModuleName: "brokertemplate",
Expand Down Expand Up @@ -505,8 +506,9 @@ var _ = Describe("DeploymentManager", func() {
By("checking that the modules and instances are updated, but the state remains the same")
expectedWorkspace := &workspace.TerraformWorkspace{
Modules: []workspace.ModuleDefinition{{
Name: "brokertemplate",
Definition: template,
Name: "brokertemplate",
Definition: template,
Definitions: map[string]string{},
}},
Instances: []workspace.ModuleInstance{{
ModuleName: "brokertemplate",
Expand Down

0 comments on commit 6eb881b

Please sign in to comment.