Skip to content

Commit 7e06af5

Browse files
committed
Fix broken tests
1 parent 34c20f9 commit 7e06af5

File tree

1 file changed

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

1 file changed

+2
-4
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
import java.nio.file.Path;
1111
import java.nio.file.Paths;
1212
import java.nio.file.StandardCopyOption;
13-
import java.nio.file.attribute.PosixFilePermission;
1413
import java.nio.file.attribute.PosixFilePermissions;
15-
import java.util.HashSet;
16-
import java.util.Set;
1714

1815
/**
1916
* Set-up class run by the compatibility image build.
@@ -49,7 +46,8 @@ private static void copy(Path source, Path targetDir) throws Exception {
4946
Path target = targetDir.resolve(source.getFileName());
5047
Files.copy(source, target, StandardCopyOption.REPLACE_EXISTING);
5148
Files.setPosixFilePermissions(target, PosixFilePermissions.fromString("rw-r--r--"));
52-
} else {
49+
}
50+
else {
5351
System.out.println("Nothing to copy, source does not exist: " + source);
5452
}
5553
}

0 commit comments

Comments
 (0)