From 84fb288f46faa746b0718060f396a875529eae14 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 1 Jun 2023 13:13:30 +0200 Subject: [PATCH] cups: fix nixos test references The tests were split up in two, but the references were not updated. --- pkgs/misc/cups/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix index d9f136f81389..f1ffb1f8e149 100644 --- a/pkgs/misc/cups/default.nix +++ b/pkgs/misc/cups/default.nix @@ -134,7 +134,12 @@ stdenv.mkDerivation rec { --replace "Exec=htmlview" "Exec=xdg-open" ''; - passthru.tests.nixos = nixosTests.printing; + passthru.tests = { + inherit (nixosTests) + printing-service + printing-socket + ; + }; meta = with lib; { homepage = "https://openprinting.github.io/cups/";