Skip to content

Commit

Permalink
fix: Its can't be wrapped by a condition
Browse files Browse the repository at this point in the history
Signed-off-by: Niccolò Fei <[email protected]>
  • Loading branch information
NiccoloFei committed Oct 7, 2024
1 parent ffe6cc7 commit 32e55b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/configuration_update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ var _ = Describe("Configuration update", Ordered, Label(tests.LabelClusterMetada
})

// pg_ident_file_mappings is available from v15 only
if env.PostgresVersion > 14 {
It("09. reloading Pg when pg_ident rules are modified", func() {
It("09. reloading Pg when pg_ident rules are modified", func() {
if env.PostgresVersion > 14 {
primaryPod, err := env.GetClusterPrimary(namespace, clusterName)
Expect(err).ToNot(HaveOccurred())
query := "select count(1) from pg_ident_file_mappings;"
Expand Down Expand Up @@ -462,8 +462,8 @@ var _ = Describe("Configuration update", Ordered, Label(tests.LabelClusterMetada
return strings.Trim(stdout, "\n"), err
}, timeout).Should(BeEquivalentTo("2"))
})
})
}
}
})
})

var _ = Describe("Configuration update with primaryUpdateMethod", Label(tests.LabelClusterMetadata), func() {
Expand Down

0 comments on commit 32e55b2

Please sign in to comment.