From 0d418e7ca54339f33c56e74c225bf20bce83f362 Mon Sep 17 00:00:00 2001 From: Tom Prince <tom.prince@private.storage> Date: Tue, 2 Nov 2021 13:52:26 -0600 Subject: [PATCH] Fix a name error in the private-storage tests. This is a follow-up to !166 (c9ddc8ad), where I missed one occurence. --- nixos/tests/private-storage.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/private-storage.nix b/nixos/tests/private-storage.nix index 86c6cbdb..640ee256 100644 --- a/nixos/tests/private-storage.nix +++ b/nixos/tests/private-storage.nix @@ -258,7 +258,7 @@ in { voucher ]} except: - code, log = client.execute('cat /tmp/stdout /tmp/stderr'); + code, output = client.execute('cat /tmp/stdout /tmp/stderr'); client.log(output) # Dump the fake Stripe API server logs, too, since the error may arise -- GitLab