From 342c8ac9ec680ad50b1f2bb9b5922bd6872c72fe Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Wed, 28 May 2025 18:42:34 +0100 Subject: [PATCH] lauti.tests: fix the eval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After a rename of the attribute the test references were fixed, but not the test itself. This caused eval failures like: $ nix build --no-link -f. lauti.tests error: … while evaluating the attribute 'lauti' at pkgs/by-name/la/lauti/package.nix:45:26: 44| passthru.tests = { 45| inherit (nixosTests) lauti; | ^ 46| }; THe change renames the test as well. --- nixos/tests/all-tests.nix | 2 +- nixos/tests/{eintopf.nix => lauti.nix} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nixos/tests/{eintopf.nix => lauti.nix} (100%) diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 510680a11c2a..2f5d6c26ea16 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -420,7 +420,7 @@ in ecryptfs = runTest ./ecryptfs.nix; fscrypt = runTest ./fscrypt.nix; fastnetmon-advanced = runTest ./fastnetmon-advanced.nix; - eintopf = runTest ./eintopf.nix; + lauti = runTest ./lauti.nix; ejabberd = runTest ./xmpp/ejabberd.nix; elk = handleTestOn [ "x86_64-linux" ] ./elk.nix { }; emacs-daemon = runTest ./emacs-daemon.nix; diff --git a/nixos/tests/eintopf.nix b/nixos/tests/lauti.nix similarity index 100% rename from nixos/tests/eintopf.nix rename to nixos/tests/lauti.nix