Skip to content

Commit dc9e9c1

Browse files
authored
Search Oracle image name in classpath (#3439)
Not sure why the new code looks for the Oracle image name only in the user home directory and not in the config file placed in the classpath. This brakes my test.
1 parent aa01d7a commit dc9e9c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/testcontainers/utility/TestcontainersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public String getKafkaImage() {
144144

145145
@Deprecated
146146
public String getOracleImage() {
147-
return getEnvVarOrUserProperty("oracle.container.image", null);
147+
return getEnvVarOrProperty("oracle.container.image", null);
148148
}
149149

150150
@Deprecated

0 commit comments

Comments
 (0)