summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-03-12 00:12:07 +0000
committertomberek <tomberek@users.noreply.github.com>2021-03-14 00:58:50 -0500
commit85ad7501ec97903a3daa459c18141179234fb17e (patch)
treecb04c56ffd2a3bc49059fd6ca6813073a7deefd4 /nixos
parent44c21068aeab776bb4ead395e3b8bef437977d98 (diff)
downloadnixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar.gz
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar.bz2
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar.lz
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar.xz
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.tar.zst
nixpkgs-85ad7501ec97903a3daa459c18141179234fb17e.zip
nixos/tests/spike: Fix assertion
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/spike.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/spike.nix b/nixos/tests/spike.nix
index cb89df73877..09035a15641 100644
--- a/nixos/tests/spike.nix
+++ b/nixos/tests/spike.nix
@@ -17,6 +17,6 @@ in
     ''
       machine.wait_for_unit("multi-user.target")
       output = machine.succeed("spike -m64 $(which pk) $(which hello)")
-      assert output == "Hello, world!\n"
+      assert "Hello, world!" in output
     '';
 })