From a0fe286174912551c7d1fc552455abb0577d0a67 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 24 May 2016 23:11:08 +0900 Subject: [PATCH] secur32/tests: Relax the certificate check a little. Signed-off-by: Alexandre Julliard --- dlls/secur32/tests/schannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c index 51c22d51dfb..f5cfd50131b 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -640,7 +640,7 @@ static void test_remote_cert(PCCERT_CONTEXT remote_cert) cert_cnt++; } - ok(cert_cnt == 3, "cert_cnt = %u\n", cert_cnt); + ok(cert_cnt == 2 || cert_cnt == 3, "cert_cnt = %u\n", cert_cnt); ok(incl_remote, "context does not contain cert itself\n"); }