From dea497f67a641d2d85f5673c3695f0fe43d46f64 Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 10 Sep 2024 22:10:38 +0100 Subject: [PATCH] tests/networking-hostname: update for `lib.escapeShellArg` change --- tests/networking-hostname.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/networking-hostname.nix b/tests/networking-hostname.nix index 3793958c5..9e8c6fddc 100644 --- a/tests/networking-hostname.nix +++ b/tests/networking-hostname.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ lib, config, pkgs, ... }: { networking.hostName = "EVE"; @@ -7,8 +7,8 @@ test = '' echo checking hostname in /activate >&2 grep "scutil --set ComputerName 'EVE’s MacBook Pro'" ${config.out}/activate - grep "scutil --set LocalHostName 'EVE'" ${config.out}/activate - grep "scutil --set HostName 'EVE'" ${config.out}/activate + grep "scutil --set LocalHostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate + grep "scutil --set HostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate echo checking defaults write in ${config.out}/activate-user >&2 ''; }