Skip to content

Commit 850e709

Browse files
committed
fix
1 parent 0142b09 commit 850e709

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ItInitContainers.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,9 @@ public void testInitContainerDiffLevelSameName() throws Exception {
292292

293293
// Modify the original domain yaml to include restartVersion in admin server node
294294
DomainCrd crd = new DomainCrd(originalYaml);
295-
crd.addInitContNode("spec", null, null, "busybox", "sleep");
296-
crd.addInitContNode("adminServer", null, null, "busybox", "foo");
295+
crd.addInitContNode("spec", null, null, "busybox", "foo");
296+
crd.addInitContNode("adminServer", null, null, "busybox", "sleep");
297+
crd.addInitContNode("clusters", "cluster-1", null, "busybox", "sleep");
297298
String modYaml = crd.getYamlTree();
298299
logger.info(modYaml);
299300
testInitContainer(modYaml);

0 commit comments

Comments
 (0)