diff --git a/tests/integration/aliases/aliases_test.go b/tests/integration/aliases/aliases_test.go index 06f3f79610..be15e00beb 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) 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)) }, }) }