From 72526a5f7cde2ef9075637802a1e2a8d2d658f70 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 17 Apr 2025 12:45:55 -0700 Subject: [PATCH] tests/firefox: fix test commands (#6840) Tests passed, but looks like `nmt` was swallowing the command not found errors. --- .../modules/programs/firefox/profiles/userchrome/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/programs/firefox/profiles/userchrome/default.nix b/tests/modules/programs/firefox/profiles/userchrome/default.nix index 113a017a..e016a210 100644 --- a/tests/modules/programs/firefox/profiles/userchrome/default.nix +++ b/tests/modules/programs/firefox/profiles/userchrome/default.nix @@ -48,13 +48,13 @@ in assertDirectoryExists home-files/${cfg.configPath}/basic - assertFileNotExists \ + assertPathNotExists \ home-files/${cfg.configPath}/lines/chrome/extraFile.css assertFileContent \ home-files/${cfg.configPath}/lines/chrome/userChrome.css \ ${./chrome/userChrome.css} - assertFileNotExists \ + assertPathNotExists \ home-files/${cfg.configPath}/path/chrome/extraFile.css assertFileContent \ home-files/${cfg.configPath}/path/chrome/userChrome.css \