Skip to content

Commit

Permalink
Fix Go option propagation expectations due to pulumi/pulumi#17936
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe authored and pulumi-renovate[bot] committed Dec 19, 2024
1 parent 671d89b commit 02c6a40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/sdk/go/go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ func TestOptionPropagation(t *testing.T) {
MatchFields(IgnoreExtras, Fields{
"Request": MatchFields(IgnoreExtras, Fields{
"Aliases": HaveExactElements(Alias("cg-options-cg-options-cm-1-aliased")),
"Protect": BeFalse(),
"Protect": BeTrue(),
"Dependencies": BeEmpty(),
"Provider": BeEquivalentTo(providerUrn(providerA)),
"Version": Equal("1.2.3"),
Expand All @@ -917,7 +917,7 @@ func TestOptionPropagation(t *testing.T) {
MatchFields(IgnoreExtras, Fields{
"Request": MatchFields(IgnoreExtras, Fields{
"Aliases": HaveExactElements(Alias("cg-options-configgroup-cm-1-aliased")),
"Protect": BeFalse(),
"Protect": BeTrue(),
"Dependencies": BeEmpty(),
"Provider": BeEquivalentTo(providerUrn(providerA)),
"Version": Equal("1.2.3"),
Expand Down Expand Up @@ -986,7 +986,7 @@ func TestOptionPropagation(t *testing.T) {
MatchFields(IgnoreExtras, Fields{
"Request": MatchFields(IgnoreExtras, Fields{
"Aliases": HaveExactElements(Alias("cf-options-configfile-cm-1-aliased")),
"Protect": BeFalse(),
"Protect": BeTrue(),
"Dependencies": BeEmpty(),
"Provider": BeEquivalentTo(providerUrn(providerA)),
"Version": Equal("1.2.3"),
Expand Down Expand Up @@ -1072,7 +1072,7 @@ func TestOptionPropagation(t *testing.T) {
MatchFields(IgnoreExtras, Fields{
"Request": MatchFields(IgnoreExtras, Fields{
"Aliases": HaveExactElements(Alias("kustomize-options-kustomize-cm-1-2kkk4bthmg-aliased")),
"Protect": BeFalse(),
"Protect": BeTrue(),
"Dependencies": BeEmpty(),
"Provider": BeEquivalentTo(providerUrn(providerA)),
"Version": Equal("1.2.3"),
Expand Down Expand Up @@ -1158,7 +1158,7 @@ func TestOptionPropagation(t *testing.T) {
MatchFields(IgnoreExtras, Fields{
"Request": MatchFields(IgnoreExtras, Fields{
"Aliases": HaveExactElements(Alias("chart-options-chart-options-chart-options-cm-1-aliased")),
"Protect": BeFalse(),
"Protect": BeTrue(),
"Dependencies": BeEmpty(),
"Provider": BeEquivalentTo(providerUrn(providerA)),
"Version": Equal("1.2.3"),
Expand Down

0 comments on commit 02c6a40

Please sign in to comment.