about summary refs log tree commit diff
path: root/nixos/tests/acme.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-06-17 11:45:19 +0200
committerRobert Hensing <robert@roberthensing.nl>2022-06-17 11:45:19 +0200
commit152736d39eeee7ff91274cb3cfe506b4611a37ac (patch)
tree91a653726ba5b4c6089a4669a93d9df5c368fd3c /nixos/tests/acme.nix
parent81bd065a9afc1455770505ce055985f134f38c2b (diff)
nixosTests.acme: Fix typechecking, avoiding type reassignment
Diffstat (limited to 'nixos/tests/acme.nix')
-rw-r--r--nixos/tests/acme.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/acme.nix b/nixos/tests/acme.nix
index 2dd06a50f40ba..c07f99c5db3a2 100644
--- a/nixos/tests/acme.nix
+++ b/nixos/tests/acme.nix
@@ -578,7 +578,7 @@ in {
               webserver.wait_for_unit(f"acme-finished-{test_domain}.target")
               wait_for_server()
               check_connection(client, test_domain)
-              rc, _ = client.execute(
+              rc, _s = client.execute(
                   f"openssl s_client -CAfile /tmp/ca.crt -connect {test_alias}:443"
                   " </dev/null 2>/dev/null | openssl x509 -noout -text"
                   f" | grep DNS: | grep {test_alias}"