Skip to content

Commit e86e16c

Browse files
committed
Provide container name when using podExec helper function
1 parent a0cf9c2 commit e86e16c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system_tests/system_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ CONSOLE_LOG=new`
342342

343343
// storage capacity reflected in the pod
344344
Eventually(func() int {
345-
output, err = kubectlExec(namespace, statefulSetPodName(cluster, 0), "df", "/var/lib/rabbitmq/mnesia")
345+
output, err = kubectlExec(namespace, statefulSetPodName(cluster, 0), "rabbitmq", "df", "/var/lib/rabbitmq/mnesia")
346346
Expect(err).ToNot(HaveOccurred())
347347
updatedDiskSize, err := strconv.Atoi(strings.Fields(strings.Split(string(output), "\n")[1])[1])
348348
Expect(err).ToNot(HaveOccurred())

0 commit comments

Comments
 (0)