From 2c486b037256abbe7a83eec4ef8d959545897daf Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Tue, 27 Feb 2024 09:30:58 +0000 Subject: [PATCH] Bug 35919: Add superlibrarian permission to Permissions.t Permissions.t was failing when running a jenkins build to another branch with this bug applied. Permissions.t was missing the permission for record sources and is now added in this patch Test plan: 1) prove t/Koha/Auth/Permissions.t --- t/Koha/Auth/Permissions.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/Koha/Auth/Permissions.t b/t/Koha/Auth/Permissions.t index 67c1066fe0..a1f8bd07bf 100755 --- a/t/Koha/Auth/Permissions.t +++ b/t/Koha/Auth/Permissions.t @@ -195,6 +195,7 @@ subtest 'superlibrarian tests' => sub { 'CAN_user_parameters_manage_patron_attributes' => 1, 'CAN_user_parameters_manage_patron_categories' => 1, 'CAN_user_parameters_manage_patron_restrictions' => 1, + 'CAN_user_parameters_manage_record_sources' => 1, 'CAN_user_parameters_manage_search_engine_config' => 1, 'CAN_user_parameters_manage_search_filters' => 1, 'CAN_user_parameters_manage_search_targets' => 1, -- 2.37.1 (Apple Git-137.1)