Skip to content

Commit

Permalink
chore: fix after the rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Nenciarini <[email protected]>
  • Loading branch information
mnencia committed Oct 22, 2024
1 parent 5b82b37 commit 03932ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/declarative_database_management_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ var _ = Describe("Declarative database management", Label(tests.LabelSmoke, test
primaryPodInfo, err := env.GetClusterPrimary(namespace, clusterName)
Expect(err).ToNot(HaveOccurred())

AssertDatabaseExists(namespace, primaryPodInfo.Name, dbname, true)
AssertDatabaseExists(primaryPodInfo, dbname, true)

assertDatabaseHasExpectedFields(namespace, primaryPodInfo.Name, database)
})
Expand All @@ -131,7 +131,7 @@ var _ = Describe("Declarative database management", Label(tests.LabelSmoke, test
primaryPodInfo, err := env.GetClusterPrimary(namespace, clusterName)
Expect(err).ToNot(HaveOccurred())

AssertDatabaseExists(namespace, primaryPodInfo.Name, dbname, retainOnDeletion)
AssertDatabaseExists(primaryPodInfo, dbname, retainOnDeletion)
})
}

Expand Down

0 comments on commit 03932ab

Please sign in to comment.