From b42dc0819a3b708c7dbc83da23aa929c2cd63c1b Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 23 May 2024 21:53:12 +0100 Subject: [PATCH] nextcloud-notify_push.tests: fix eval Without the change the eval fails as: $ nix build --no-link -f. nextcloud-notify_push.tests error: attribute 'with-postgresql-and-redis26' missing at pkgs/servers/nextcloud/notify_push.nix:35:9: 34| inherit (nixosTests.nextcloud) 35| with-postgresql-and-redis26 | ^ 36| with-postgresql-and-redis27 Did you mean one of with-postgresql-and-redis27, with-postgresql-and-redis28 or with-postgresql-and-redis29? --- pkgs/servers/nextcloud/notify_push.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nextcloud/notify_push.nix b/pkgs/servers/nextcloud/notify_push.nix index 3d92584d2f93..f028198a1fca 100644 --- a/pkgs/servers/nextcloud/notify_push.nix +++ b/pkgs/servers/nextcloud/notify_push.nix @@ -32,9 +32,9 @@ rustPlatform.buildRustPackage rec { }; tests = { inherit (nixosTests.nextcloud) - with-postgresql-and-redis26 with-postgresql-and-redis27 - with-postgresql-and-redis28; + with-postgresql-and-redis28 + with-postgresql-and-redis29; inherit test_client; }; };