Skip to content

Commit

Permalink
test: assert grafana's absence
Browse files Browse the repository at this point in the history
Signed-off-by: Tarun Gupta Akirala <[email protected]>
  • Loading branch information
takirala committed Jan 17, 2025
1 parent 66ad737 commit 3b00083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apptests/appscenarios/kubecost_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var _ = Describe("Kubecost Tests", Label("kubecost"), func() {
deploymentList = &appsv1.DeploymentList{}
err = k8sClient.List(ctx, deploymentList, listOptions)
Expect(err).To(BeNil())
Expect(deploymentList.Items).To(HaveLen(4), "Expected 4 deployments to be created - cost-analyzer, grafana, prometheus server and prometheus alertmanager")
Expect(deploymentList.Items).To(HaveLen(3), "Expected 3 components to be created - cost-analyzer, prometheus server and prometheus alertmanager")
Expect(err).To(BeNil())

for _, deployment := range deploymentList.Items {
Expand Down

0 comments on commit 3b00083

Please sign in to comment.