summary refs log tree commit diff
diff options
context:
space:
mode:
authorScott Worley <scottworley@scottworley.com>2020-09-15 15:40:59 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2020-10-25 11:01:30 +0100
commit0cb41a253f20510752d1b6d43dd675989f4f7f62 (patch)
tree9b9912bd3f876cee6633d15bc6e64ee677e17029
parent5e6dfb17f91b2eb5374bffc4d0c28bcc9645e605 (diff)
downloadnixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar.gz
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar.bz2
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar.lz
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar.xz
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.tar.zst
nixpkgs-0cb41a253f20510752d1b6d43dd675989f4f7f62.zip
nixos/tests/trac: Use curl --fail
-rw-r--r--nixos/tests/trac.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/trac.nix b/nixos/tests/trac.nix
index 7953f8d41f7..af7182d1e18 100644
--- a/nixos/tests/trac.nix
+++ b/nixos/tests/trac.nix
@@ -14,6 +14,6 @@ import ./make-test-python.nix ({ pkgs, ... }: {
     start_all()
     machine.wait_for_unit("trac.service")
     machine.wait_for_open_port(8000)
-    machine.wait_until_succeeds("curl -L http://localhost:8000/ | grep 'Trac Powered'")
+    machine.wait_until_succeeds("curl -fL http://localhost:8000/ | grep 'Trac Powered'")
   '';
 })