Skip to content

Commit

Permalink
tests: dscinitialization_test: use monitoringNamespace in its test
Browse files Browse the repository at this point in the history
For some reason

a91aaab ("[cherry-pick/sync] from 2.6 back to main (#165)")

changed monitoringNamespace to applicationNamespace.

Signed-off-by: Yauheni Kaliuta <ykaliuta@redhat.com>
  • Loading branch information
ykaliuta authored and openshift-merge-bot[bot] committed Aug 1, 2024
1 parent 2dc404b commit 3a58718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/dscinitialization/dscinitialization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var _ = Describe("DataScienceCluster initialization", func() {
It("Should create default monitoring namespace", func(ctx context.Context) {
// then
foundMonitoringNamespace := &corev1.Namespace{}
Eventually(namespaceExists(applicationNamespace, foundMonitoringNamespace), timeout, interval).
Eventually(namespaceExists(monitoringNamespace, foundMonitoringNamespace), timeout, interval).
WithContext(ctx).
Should(BeTrue())
Expect(foundMonitoringNamespace.Name).Should(Equal(monitoringNamespace))
Expand Down

0 comments on commit 3a58718

Please sign in to comment.