We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64bcc89 commit 2bf636eCopy full SHA for 2bf636e
integration-tests/src/test/java/oracle/kubernetes/operator/ITMultipleClusters.java
@@ -244,7 +244,10 @@ public void testCreateDomainTwoClusterWDTInImage() throws Exception {
244
}
245
restoreDomainTemplate();
246
if (Files.exists(Paths.get(wdttemplate + ".org"))) {
247
- Files.copy(Paths.get(wdttemplate + ".org"), Paths.get(wdttemplate));
+ Files.copy(
248
+ Paths.get(wdttemplate + ".org"),
249
+ Paths.get(wdttemplate),
250
+ StandardCopyOption.REPLACE_EXISTING);
251
252
253
logger.log(Level.INFO, "SUCCESS - {0}", testMethodName);
0 commit comments