about summary refs log tree commit diff
path: root/nixos/tests/printing.nix
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2018-12-19 22:51:36 +0100
committerBob van der Linden <bobvanderlinden@gmail.com>2019-03-24 21:15:30 +0100
commit0cf1944c36de87a3fb231adec090bea595092f94 (patch)
tree7c8a1f0341ff511b6ec8a793d16443dd2a132e81 /nixos/tests/printing.nix
parent323e8ef37549c2cff1412c384858fc6e78d64c1c (diff)
nixos/cups: /var/run -> /run
Diffstat (limited to 'nixos/tests/printing.nix')
-rw-r--r--nixos/tests/printing.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/printing.nix b/nixos/tests/printing.nix
index f009a7c706eef..e8702c1ffbf11 100644
--- a/nixos/tests/printing.nix
+++ b/nixos/tests/printing.nix
@@ -42,7 +42,7 @@ import ./make-test.nix ({pkgs, ... }: {
       # check local encrypted connections work without error
       $client->succeed("lpstat -E -r") =~ /scheduler is running/ or die;
       # Test that UNIX socket is used for connections.
-      $client->succeed("lpstat -H") =~ "/var/run/cups/cups.sock" or die;
+      $client->succeed("lpstat -H") =~ "/run/cups/cups.sock" or die;
       # Test that HTTP server is available too.
       $client->succeed("curl --fail http://localhost:631/");
       $client->succeed("curl --fail http://server:631/");