Skip to content

Commit

Permalink
Fix detekt - line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
anien committed Jul 12, 2023
1 parent 5051701 commit e66eca2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class CpbV2VerifierTest {
val exception = assertThrows<CertPathValidatorException> {
verify(cpb, setOf(CA1))
}
assertEquals("Error validating code signer's certificate path, X.509 name: CN=Corda Dev Root CA,OU=R3,O=Corda,L=Dublin,C=IE. Path does not chain with any of the trust anchors", exception.message)
assertEquals("Error validating code signer's certificate path, X.509 name: CN=Corda Dev Root CA,OU=R3," +
"O=Corda,L=Dublin,C=IE. Path does not chain with any of the trust anchors", exception.message)
}

@Test
Expand Down

0 comments on commit e66eca2

Please sign in to comment.