Use example IPs according to RFC3849/RFC5737

This commit is contained in:
Richard Körber
2024-03-13 20:27:12 +01:00
parent 97a6708db3
commit b5a7e00ac3
10 changed files with 31 additions and 31 deletions

View File

@@ -227,7 +227,7 @@ public class EmailProcessorTest extends SMIMETests {
assertThatExceptionOfType(AcmeProtocolException.class)
.isThrownBy(() -> {
var processor = EmailProcessor.plainMessage(message);
processor.expectedIdentifier(Identifier.ip("192.168.0.1"));
processor.expectedIdentifier(Identifier.ip("192.0.2.1"));
})
.withMessage("Wrong identifier type: ip");
}