From cff1a3cfdd329c81a6bb5813172efd71b636e237 Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Fri, 20 Mar 2026 09:09:53 -0500 Subject: [PATCH] Fix from review --- tests/api/test_asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/test_asn.c b/tests/api/test_asn.c index dc16b727de..0357c684eb 100644 --- a/tests/api/test_asn.c +++ b/tests/api/test_asn.c @@ -1092,7 +1092,7 @@ int test_wc_DecodeObjectId(void) } /* Test 6: Buffer too small for later arcs */ - outSz = 3; /* only room for 3 arcs, but OID has 8 */ + outSz = 3; /* only room for 3 arcs, but OID has 7 */ ExpectIntEQ(DecodeObjectId(oid_sha256rsa, sizeof(oid_sha256rsa), out, &outSz), WC_NO_ERR_TRACE(BUFFER_E));