docuseal.tests: fix the eval

Without the change the eval fails as:

    $ nix build --no-link -f. docuseal.tests
    error:
       … while evaluating the attribute 'docuseal-postgresql'
         at pkgs/by-name/do/docuseal/package.nix:121:28:
          120|     tests = {
          121|       inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
             |                            ^
          122|     };

       error: attribute 'docuseal-postgresql' missing
       at pkgs/by-name/do/docuseal/package.nix:121:28:
          120|     tests = {
          121|       inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
             |                            ^
          122|     };
This commit is contained in:
Sergei Trofimovich
2025-10-13 10:49:38 +01:00
parent 6f6ed28cad
commit 300e0f70eb

View File

@@ -118,7 +118,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru = {
tests = {
inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
inherit (nixosTests) docuseal-psql docuseal-sqlite;
};
updateScript = ./update.sh;
};