Updated the reference to the getObject for a Tagged Object. this is

current causing the build to fail in reference to #693 Unit test
This commit is contained in:
Cyrus 2024-02-01 06:47:46 -05:00
parent 06dc119702
commit 7c1f43c19b

View File

@ -191,7 +191,7 @@ public class IssuedCertificateAttributeHelperTest {
DLSequence dlSequence = (DLSequence) subjectAlternativeName.getParsedValue();
ASN1TaggedObject asn1TaggedObject = (ASN1TaggedObject) dlSequence.getObjectAt(0);
ASN1Sequence asn1Sequence = (ASN1Sequence) asn1TaggedObject.getObject();
ASN1Sequence asn1Sequence = (ASN1Sequence) asn1TaggedObject.getBaseObject();
Enumeration enumeration = asn1Sequence.getObjects();
while (enumeration.hasMoreElements()) {