nixos/tests/mediawiki: Use curl --fail

This commit is contained in:
Scott Worley
2020-10-25 11:01:30 +01:00
committed by Frederik Rietdijk
parent 0cb41a253f
commit 6cd28e4f07
+1 -1
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
'';
})