about summary refs log tree commit diff
path: root/nixos/tests/systemd.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-08-13 20:49:43 +0200
committerFlorian Klink <flokli@flokli.de>2020-08-13 20:51:42 +0200
commitd85d7c7179dca0dedf3a263aa53ec1f6c0bad6d1 (patch)
tree61eb36994912c3c5bf00eb8c7a2fd6b3fd62531c /nixos/tests/systemd.nix
parentee483145d054ff8bd225680bc8fc2d472095839b (diff)
nixosTests.systemd: update output
systemd shows minutes as `min`, not `m`.
Diffstat (limited to 'nixos/tests/systemd.nix')
-rw-r--r--nixos/tests/systemd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/systemd.nix b/nixos/tests/systemd.nix
index 9d21f9158f3c1..abd842b51f737 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"):