diff --git a/tests/examples/examples_test.go b/tests/examples/examples_test.go index a34278f4a4..cb18999803 100644 --- a/tests/examples/examples_test.go +++ b/tests/examples/examples_test.go @@ -164,7 +164,7 @@ func TestAccHelmApiVersions(t *testing.T) { t *testing.T, stackInfo integration.RuntimeValidationStackInfo, ) { assert.NotNil(t, stackInfo.Deployment) - assert.Equal(t, 7, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 6, len(stackInfo.Deployment.Resources)) }, }) @@ -181,7 +181,7 @@ func TestAccHelmLocal(t *testing.T) { t *testing.T, stackInfo integration.RuntimeValidationStackInfo, ) { assert.NotNil(t, stackInfo.Deployment) - assert.Equal(t, 16, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 15, len(stackInfo.Deployment.Resources)) }, }) diff --git a/tests/integration/aliases/aliases_test.go b/tests/integration/aliases/aliases_test.go index 06f3f79610..f75cd6d30c 100644 --- a/tests/integration/aliases/aliases_test.go +++ b/tests/integration/aliases/aliases_test.go @@ -37,7 +37,7 @@ func TestAliases(t *testing.T) { Quick: true, ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) { assert.NotNil(t, stackInfo.Deployment) - assert.Equal(t, 5, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 4, len(stackInfo.Deployment.Resources)) tests.SortResourcesByURN(stackInfo) @@ -51,7 +51,7 @@ func TestAliases(t *testing.T) { Additive: true, ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) { assert.NotNil(t, stackInfo.Deployment) - assert.Equal(t, 5, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 4, len(stackInfo.Deployment.Resources)) tests.SortResourcesByURN(stackInfo) @@ -69,7 +69,7 @@ func TestAliases(t *testing.T) { Additive: true, ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) { assert.NotNil(t, stackInfo.Deployment) - assert.Equal(t, 5, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 4, len(stackInfo.Deployment.Resources)) tests.SortResourcesByURN(stackInfo) diff --git a/tests/integration/yaml-url/yaml_url_test.go b/tests/integration/yaml-url/yaml_url_test.go index 058357b9b9..aa9087f196 100644 --- a/tests/integration/yaml-url/yaml_url_test.go +++ b/tests/integration/yaml-url/yaml_url_test.go @@ -37,7 +37,7 @@ func TestYAMLURL(t *testing.T) { assert.NotNil(t, stackInfo.Deployment) // Assert that we've retrieved the YAML from the URL and provisioned them. - assert.Equal(t, 19, len(stackInfo.Deployment.Resources)) + assert.Equal(t, 18, len(stackInfo.Deployment.Resources)) }, }) }