From d85d7c7179dca0dedf3a263aa53ec1f6c0bad6d1 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 13 Aug 2020 20:49:43 +0200 Subject: [PATCH] nixosTests.systemd: update output systemd shows minutes as `min`, not `m`. --- nixos/tests/systemd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/systemd.nix b/nixos/tests/systemd.nix index 9d21f9158f3c..abd842b51f73 100644 --- a/nixos/tests/systemd.nix +++ b/nixos/tests/systemd.nix @@ -145,8 +145,8 @@ import ./make-test-python.nix ({ pkgs, ... }: { output = machine.succeed("systemctl show | grep Watchdog") assert "RuntimeWatchdogUSec=30s" in output - assert "RebootWatchdogUSec=10m" in output - assert "KExecWatchdogUSec=5m" in output + assert "RebootWatchdogUSec=10min" in output + assert "KExecWatchdogUSec=5min" in output # Test systemd cryptsetup support with subtest("systemd successfully reads /etc/crypttab and unlocks volumes"):