about summary refs log tree commit diff
path: root/pkgs/misc/cups
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-01 13:13:30 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-02 02:05:13 +0200
commit84fb288f46faa746b0718060f396a875529eae14 (patch)
tree306c4c6c122587664c50d7d9d89fd2824f4fc92b /pkgs/misc/cups
parenta7bce0a08195da8427982881e23128321952bb0a (diff)
cups: fix nixos test references
The tests were split up in two, but the references were not updated.
Diffstat (limited to 'pkgs/misc/cups')
-rw-r--r--pkgs/misc/cups/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix
index d9f136f81389f..f1ffb1f8e1490 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/";