From cbf5264d1c3624dae87730abbc0ec273ca98ddf0 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Tue, 10 Mar 2026 10:23:10 -0600 Subject: [PATCH] replace comment character with allowed character --- tests/api/test_x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/test_x509.c b/tests/api/test_x509.c index 653b0f0c74..5b63281d29 100644 --- a/tests/api/test_x509.c +++ b/tests/api/test_x509.c @@ -287,7 +287,7 @@ int test_x509_set_serialNumber(void) ExpectIntEQ(wolfSSL_X509_set_serialNumber(x509, s), WOLFSSL_FAILURE); - /* length == 2: still rejected — the guard requires length >= 3 */ + /* length == 2: still rejected - the guard requires length >= 3 */ s->length = 2; s->data[0] = ASN_INTEGER; s->data[1] = 0;