about summary refs log tree commit diff
path: root/pkgs/misc
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
parenta7bce0a08195da8427982881e23128321952bb0a (diff)
downloadnixlib-84fb288f46faa746b0718060f396a875529eae14.tar
nixlib-84fb288f46faa746b0718060f396a875529eae14.tar.gz
nixlib-84fb288f46faa746b0718060f396a875529eae14.tar.bz2
nixlib-84fb288f46faa746b0718060f396a875529eae14.tar.lz
nixlib-84fb288f46faa746b0718060f396a875529eae14.tar.xz
nixlib-84fb288f46faa746b0718060f396a875529eae14.tar.zst
nixlib-84fb288f46faa746b0718060f396a875529eae14.zip
cups: fix nixos test references
The tests were split up in two, but the references were not updated.
Diffstat (limited to 'pkgs/misc')
-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 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/";