lauti.tests: fix the eval

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.
This commit is contained in:
Sergei Trofimovich 2025-05-28 18:42:34 +01:00
parent 077773ea42
commit 342c8ac9ec
2 changed files with 1 additions and 1 deletions

View file

@ -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;