diff --git a/nixos/tests/actual.nix b/nixos/tests/actual.nix index b8ee303f8127..26ddcb3d236e 100644 --- a/nixos/tests/actual.nix +++ b/nixos/tests/actual.nix @@ -1,18 +1,16 @@ -import ./make-test-python.nix ( - { lib, ... }: - { - name = "actual"; - meta.maintainers = [ lib.maintainers.oddlama ]; +{ lib, ... }: +{ + name = "actual"; + meta.maintainers = [ lib.maintainers.oddlama ]; - nodes.machine = - { ... }: - { - services.actual.enable = true; - }; + nodes.machine = + { ... }: + { + services.actual.enable = true; + }; - testScript = '' - machine.wait_for_open_port(3000) - machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'") - ''; - } -) + testScript = '' + machine.wait_for_open_port(3000) + machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'") + ''; +} diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index b29572378e22..917777d1ce2d 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -148,7 +148,7 @@ in { aaaaxy = runTest ./aaaaxy.nix; acme = import ./acme/default.nix { inherit runTest; }; acme-dns = runTest ./acme-dns.nix; - actual = handleTest ./actual.nix {}; + actual = runTest ./actual.nix; adguardhome = runTest ./adguardhome.nix; aesmd = runTestOn ["x86_64-linux"] ./aesmd.nix; agate = runTest ./web-servers/agate.nix;