From 41547462fb4f38aa8bb13d45354bfd4ae7801b05 Mon Sep 17 00:00:00 2001 From: technofab Date: Mon, 15 Sep 2025 15:36:58 +0200 Subject: [PATCH] test: fix missing grep due to strict mode being default now --- tests/devshell_test.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/devshell_test.nix b/tests/devshell_test.nix index ca1af04..a61b349 100644 --- a/tests/devshell_test.nix +++ b/tests/devshell_test.nix @@ -15,6 +15,7 @@ in # sh '' + ${ntlib.helpers.path [pkgs.gnugrep]} ${ntlib.helpers.scriptHelpers} assert_file_contains ${shell}/env.bash "XDG_DATA_DIRS" "should contain XDG_DATA_DIRS" ''; @@ -43,6 +44,7 @@ in # sh '' + ${ntlib.helpers.path [pkgs.gnugrep]} ${ntlib.helpers.scriptHelpers} assert_file_contains ${shell}/env.bash "HELLO" "should contain HELLO" assert_file_contains ${shell}/env.bash "world" "should contain world"