aboutsummaryrefslogtreecommitdiff
path: root/src/test/model/pki/cert/TbsCertificateTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/model/pki/cert/TbsCertificateTest.java')
-rw-r--r--src/test/model/pki/cert/TbsCertificateTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/model/pki/cert/TbsCertificateTest.java b/src/test/model/pki/cert/TbsCertificateTest.java
index ee2a9c7..e778350 100644
--- a/src/test/model/pki/cert/TbsCertificateTest.java
+++ b/src/test/model/pki/cert/TbsCertificateTest.java
@@ -21,7 +21,8 @@ public class TbsCertificateTest {
void testConstructor() {
assertEquals(TbsCertificate.VERSION_V3, TestConstants.CERT_GENERATED.getVersion().getLong());
assertEquals(100, TestConstants.CERT_GENERATED.getSerialNumber().getLong());
- assertArrayEquals(ObjectIdentifier.OID_RSA_ENCRYPTION, TestConstants.CERT_GENERATED.getSignature().getType().getInts());
+ assertArrayEquals(ObjectIdentifier.OID_RSA_ENCRYPTION,
+ TestConstants.CERT_GENERATED.getSignature().getType().getInts());
assertEquals("CN=Test CA,C=CA", TestConstants.CERT_GENERATED.getIssuer().toString());
assertEquals(TestConstants.NOW, TestConstants.CERT_GENERATED.getValidity().getNotBefore().getTimestamp());
assertEquals(TestConstants.NOW.plusYears(1),