nixos/tests/mediawiki: Use curl --fail

gstqt5
Scott Worley 2020-09-15 15:43:39 -07:00 committed by Frederik Rietdijk
parent 0cb41a253f
commit 6cd28e4f07
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
machine.wait_for_unit("phpfpm-mediawiki.service")
page = machine.succeed("curl -L http://localhost/")
page = machine.succeed("curl -fL http://localhost/")
assert "MediaWiki has been installed" in page
'';
})