about summary refs log tree commit diff
path: root/nixos/tests/systemd-boot.nix
diff options
context:
space:
mode:
authorThomas Watson <twatson52@icloud.com>2023-01-19 22:45:41 -0600
committerThomas Watson <twatson52@icloud.com>2023-01-19 22:45:41 -0600
commitd12040e85829bf0c4afbb694449283cf6941650b (patch)
tree868aa189e9d6cf91f211bf9b174c104a40f1cfee /nixos/tests/systemd-boot.nix
parentcd80919d5835448c06b45b1d597276f436f4ccc9 (diff)
nixos/tests/systemd-boot: fix update test
At some point many months ago, the systemd-boot update script stopped
outputting parentheses around the version being upgraded from, causing
the test to fail. Remove the parentheses from the expected message to
fix the test.
Diffstat (limited to 'nixos/tests/systemd-boot.nix')
-rw-r--r--nixos/tests/systemd-boot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/systemd-boot.nix b/nixos/tests/systemd-boot.nix
index 039e6bdd9d5ab..759ddd2eb2ca1 100644
--- a/nixos/tests/systemd-boot.nix
+++ b/nixos/tests/systemd-boot.nix
@@ -107,7 +107,7 @@ in
       )
 
       output = machine.succeed("/run/current-system/bin/switch-to-configuration boot")
-      assert "updating systemd-boot from (000.0-1-notnixos) to " in output
+      assert "updating systemd-boot from 000.0-1-notnixos to " in output
     '';
   };