From 6c23c1f9bce1077cb7a70c888802879d03ddf56f Mon Sep 17 00:00:00 2001 From: Jan Sandbrink Date: Thu, 20 Nov 2025 10:44:07 +0100 Subject: [PATCH] Rename testing environment variable NEXTCLOUD_LOCAL_GROUP_USER_PASSWORD was not really telling what kind of password we are setting. The new name makes it more clear that the password is related to the AMPF feature. --- .env.test.local.example | 2 +- modules/storages/spec/factories/storage_factory.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.test.local.example b/.env.test.local.example index 5cea464f598..c7e72031345 100644 --- a/.env.test.local.example +++ b/.env.test.local.example @@ -38,7 +38,7 @@ NEXTCLOUD_LOCAL_OPENPROJECT_REDIRECT_URI=https://nextcloud.local/index.php/apps/ NEXTCLOUD_LOCAL_OAUTH_CLIENT_ACCESS_TOKEN= NEXTCLOUD_LOCAL_OAUTH_CLIENT_REFRESH_TOKEN= -NEXTCLOUD_LOCAL_GROUP_USER_PASSWORD= +NEXTCLOUD_LOCAL_AMPF_PASSWORD= # Sharepoint/OneDrive VCR credentials diff --git a/modules/storages/spec/factories/storage_factory.rb b/modules/storages/spec/factories/storage_factory.rb index f2a2a6c4c7e..e0b2aa85be2 100644 --- a/modules/storages/spec/factories/storage_factory.rb +++ b/modules/storages/spec/factories/storage_factory.rb @@ -173,7 +173,7 @@ FactoryBot.define do trait :as_automatically_managed do automatic_management_enabled { true } username { "OpenProject" } - password { ENV.fetch("NEXTCLOUD_LOCAL_GROUP_USER_PASSWORD", "AMPF_PASSWORD_NOT_SET") } + password { ENV.fetch("NEXTCLOUD_LOCAL_AMPF_PASSWORD", "AMPF_PASSWORD_NOT_SET") } end end