From 852987500b8fb90e8a8c5956c87240c2e587888b Mon Sep 17 00:00:00 2001 From: phanirithvij Date: Sat, 28 Mar 2026 20:32:51 +0530 Subject: [PATCH] nixosTests.mitmproxy: fix certificate location passed to curl Broken since - https://hydra.nixos.org/build/322094860 (logs missing) - https://hydra.nixos.org/build/323032381 (next run with logs) https://hydra.nixos.org/job/nixos/unstable/nixos.tests.mitmproxy.x86_64-linux/all Signed-off-by: phanirithvij --- nixos/tests/mitmproxy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/mitmproxy.nix b/nixos/tests/mitmproxy.nix index 1a3d98d7fcf2..334085463a20 100644 --- a/nixos/tests/mitmproxy.nix +++ b/nixos/tests/mitmproxy.nix @@ -86,7 +86,7 @@ in '' def curl(command: str, proxy: bool = False): if proxy: - command = "curl --proxy 127.0.0.1:8080 --cacert ~/.mitmproxy/mitmproxy-ca-cert.pem " + command + command = "curl --proxy 127.0.0.1:8080 --cacert ~/.mitmproxy/mitmproxy-ca.pem " + command else: command = "curl " + command return machine.succeed(command)