From 3829ba2e710553893faf6336cc6b2f3fc17a293e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Mon, 9 Jan 2017 17:50:17 +0000 Subject: [PATCH] http: correct the expected error for RC4 We must make sure that we're getting a certificate error from the library so we know that we're testing the right thing. --- tests/online/badssl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/online/badssl.c b/tests/online/badssl.c index f3470f6d7..6dacc18b6 100644 --- a/tests/online/badssl.c +++ b/tests/online/badssl.c @@ -70,6 +70,8 @@ void test_online_badssl__old_cipher(void) if (!g_has_ssl) cl_skip(); - cl_git_fail(git_clone(&g_repo, "https://rc4.badssl.com/fake.git", "./fake", NULL)); - cl_git_fail(git_clone(&g_repo, "https://rc4.badssl.com/fake.git", "./fake", &opts)); + cl_git_fail_with(GIT_ECERTIFICATE, + git_clone(&g_repo, "https://rc4.badssl.com/fake.git", "./fake", NULL)); + cl_git_fail_with(GIT_ECERTIFICATE, + git_clone(&g_repo, "https://rc4.badssl.com/fake.git", "./fake", &opts)); }