From fea6bb37749049df783959a3079db97d71ea9ccf Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 20 Mar 2026 12:03:29 +0100 Subject: [PATCH] nixosTests.firefox: fix type hint after nspawn driver addition --- nixos/tests/firefox.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/firefox.nix b/nixos/tests/firefox.nix index 53dac8c3b794..636e8cef3b48 100644 --- a/nixos/tests/firefox.nix +++ b/nixos/tests/firefox.nix @@ -46,7 +46,7 @@ @contextmanager - def record_audio(machine: Machine): + def record_audio(machine: BaseMachine): """ Perform actions while recording the machine audio output. @@ -56,7 +56,7 @@ machine.systemctl("stop audio-recorder") - def wait_for_sound(machine: Machine): + def wait_for_sound(machine: BaseMachine): """ Wait until any sound has been emitted. """