Skip to content

Commit 6c62af2

Browse files
committed
Fix broken tests
1 parent c5791ec commit 6c62af2

File tree

1 file changed

+1
-1
lines changed
  • java/operator-compatibility/src/main/java/com/oracle/coherence/k8s/testing

1 file changed

+1
-1
lines changed

java/operator-compatibility/src/main/java/com/oracle/coherence/k8s/testing/Setup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ private static void copy(Path source, Path targetDir) throws Exception {
4545
Path target = targetDir.resolve(source.getFileName());
4646
Files.copy(source, target, StandardCopyOption.REPLACE_EXISTING);
4747
} else {
48-
throw new IllegalStateException("Source does not exist: " + source);
48+
System.out.println("Nothing to copy, source does not exist: " + source);
4949
}
5050
}
5151
}

0 commit comments

Comments
 (0)