Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ public SELF withEnv(Map<String, String> env) {
@Override
public SELF withLabel(String key, String value) {
if (key.startsWith("org.testcontainers")) {
throw new IllegalArgumentException("The org.testcontainers namespace is reserved for interal use");
throw new IllegalArgumentException("The org.testcontainers namespace is reserved for internal use");
}
this.containerDef.addLabel(key, value);
return self();
Expand Down
Loading