From 0c42c7a66f0af09b0dfc3bce4846c784de96a2da Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sun, 7 Jun 2026 21:16:32 -0500 Subject: [PATCH] darkman: replace removed python2 in test --- tests/modules/services/darkman/basic-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/services/darkman/basic-configuration.nix b/tests/modules/services/darkman/basic-configuration.nix index 00a0fad0a..cbb8020f3 100644 --- a/tests/modules/services/darkman/basic-configuration.nix +++ b/tests/modules/services/darkman/basic-configuration.nix @@ -17,7 +17,7 @@ ''; lightModeScripts.color-scheme-light = pkgs.writeScript "my-python-script" '' - #!${pkgs.python2}/bin/python + #!${pkgs.python3}/bin/python print('Do something!') ''; @@ -54,7 +54,7 @@ ''} assertFileContent $lightModeScriptFile ${builtins.toFile "expected" '' - #!@python@/bin/python + #!@python3@/bin/python print('Do something!') ''}