summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorStig Palmquist <stig@stig.io>2022-06-08 17:37:14 +0200
committerStig Palmquist <git@stig.io>2022-07-26 22:38:05 +0200
commit8532168fd7c975b7e492bbfae7f9448c60323938 (patch)
treea823dd114cf76e395bb927bdeea9d6522fe02d0d /nixos
parent011f472b2990dfd7a875c9408e27393861870e91 (diff)
downloadnixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar.gz
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar.bz2
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar.lz
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar.xz
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.tar.zst
nixpkgs-8532168fd7c975b7e492bbfae7f9448c60323938.zip
nixos/tests/convos: fix tests
- Fix journal grep test
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/convos.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/convos.nix b/nixos/tests/convos.nix
index cc0c2e75893..a5dafed8f6f 100644
--- a/nixos/tests/convos.nix
+++ b/nixos/tests/convos.nix
@@ -24,7 +24,7 @@ in
   testScript = ''
     machine.wait_for_unit("convos")
     machine.wait_for_open_port(${toString port})
-    machine.succeed("journalctl -u convos | grep -q 'Listening at.*${toString port}'")
+    machine.succeed("journalctl -u convos | grep -q 'application available at.*${toString port}'")
     machine.succeed("curl -f http://localhost:${toString port}/")
   '';
 })