File tree Expand file tree Collapse file tree 4 files changed +3
-58
lines changed
src/test/java/de/codecentric/spa/server/tests/containers Expand file tree Collapse file tree 4 files changed +3
-58
lines changed Original file line number Diff line number Diff line change 1+ * .iml
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.testcontainers</groupId >
3535 <artifactId >junit-jupiter</artifactId >
36- <version >1.14 .2</version >
36+ <version >1.15 .2</version >
3737 <scope >test</scope >
3838 </dependency >
3939 <dependency >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33import org .testcontainers .images .builder .ImageFromDockerfile ;
44
55import java .nio .file .Paths ;
6- import java .util .concurrent .ExecutionException ;
76
87public class BaseImage {
98 public static final ImageFromDockerfile IMAGE ;
@@ -21,13 +20,6 @@ public class BaseImage {
2120 }
2221
2322 public static String getImageName () {
24- String imageName = null ;
25- try {
26- imageName = IMAGE .get ();
27- } catch (InterruptedException | ExecutionException e ) {
28- throw new RuntimeException (e );
29- }
30-
31- return imageName ;
23+ return IMAGE .get ();
3224 }
3325}
You can’t perform that action at this time.
0 commit comments