Skip to content

Commit

Permalink
Extension Matcher test minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akgalwas committed Aug 12, 2024
1 parent de49257 commit 2186d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/shoot-comparator/pkg/shoot/extensionmatcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ var _ = Describe(":: extension matcher :: ", func() {
false,
),
Entry(
"should detect missing extension",
"should detect redundant extension",
[]v1beta1.Extension{dnsExtEnabled, networkingExtDisabled, certificateExtEnabled},
[]v1beta1.Extension{networkingExtDisabled, certificateExtEnabled},
false,
),
Entry(
"should detect redundant extension",
"should detect missing extension",
[]v1beta1.Extension{networkingExtDisabled, certificateExtEnabled},
[]v1beta1.Extension{dnsExtEnabled, networkingExtDisabled, certificateExtEnabled},
false,
Expand Down

0 comments on commit 2186d7f

Please sign in to comment.