From 3a627a95990678fa89828da0336597552296cb5e Mon Sep 17 00:00:00 2001 From: sh <37271604+shumvgolove@users.noreply.github.com> Date: Mon, 9 Mar 2026 12:23:03 +0000 Subject: [PATCH] tests: use correct web CA certificate in CLI static files test (#1727) --- tests/CLITests.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CLITests.hs b/tests/CLITests.hs index 798b3e939..66af74ab8 100644 --- a/tests/CLITests.hs +++ b/tests/CLITests.hs @@ -159,7 +159,7 @@ smpServerTestStatic = do html <- BL.readFile $ webPath <> "/index.html" -- "external" CA signing HTTP credentials - Fingerprint fpHTTP <- loadFileFingerprint "tests/fixtures/ca.crt" + Fingerprint fpHTTP <- loadFileFingerprint "tests/fixtures/web_ca.crt" let caHTTP = C.KeyHash fpHTTP manager <- H1.newManager H1.defaultManagerSettings H1.responseBody <$> H1.httpLbs "http://127.0.0.1:8000" manager `shouldReturn` html