From 5959e283cd9ce7dc8d08afcd22d62a6168d4bbbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 2 Aug 2022 14:12:52 +0200 Subject: [PATCH] syncthing: also link nixosTests.syncthing in passthru.tests Before this change it linked syncthing-init and syncthing-relay but was missing the main syncthing test itself. --- pkgs/applications/networking/syncthing/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index f09f9fb45ab3..39e76da67bc4 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -34,9 +34,8 @@ let inherit postInstall; - passthru.tests = with nixosTests; { - init = syncthing-init; - relay = syncthing-relay; + passthru.tests = { + inherit (nixosTests) syncthing syncthing-init syncthing-relay; }; meta = with lib; {