Skip to content

Commit 5c44820

Browse files
authored
Fix typo (#11717)
1 parent 84b1c3a commit 5c44820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/testcontainers/containers/GenericContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ public SELF withEnv(Map<String, String> env) {
11151115
@Override
11161116
public SELF withLabel(String key, String value) {
11171117
if (key.startsWith("org.testcontainers")) {
1118-
throw new IllegalArgumentException("The org.testcontainers namespace is reserved for interal use");
1118+
throw new IllegalArgumentException("The org.testcontainers namespace is reserved for internal use");
11191119
}
11201120
this.containerDef.addLabel(key, value);
11211121
return self();

0 commit comments

Comments
 (0)