This is an automated email from the ASF dual-hosted git repository.
adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new a849b3555 Fix failing Authz test (#3974)
a849b3555 is described below
commit a849b355529990db1c1840f796f61acd9b1b8de1
Author: Alexandre Dutra <[email protected]>
AuthorDate: Wed Mar 11 16:15:17 2026 +0100
Fix failing Authz test (#3974)
The test testRevokeCatalogRoleFromPrincipalRolePrivileges is failing
because it was merged in #3906, right before #3970.
---
.../org/apache/polaris/service/admin/PolarisAdminServiceAuthzTest.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/runtime/service/src/test/java/org/apache/polaris/service/admin/PolarisAdminServiceAuthzTest.java
b/runtime/service/src/test/java/org/apache/polaris/service/admin/PolarisAdminServiceAuthzTest.java
index 805876f96..eadd33aff 100644
---
a/runtime/service/src/test/java/org/apache/polaris/service/admin/PolarisAdminServiceAuthzTest.java
+++
b/runtime/service/src/test/java/org/apache/polaris/service/admin/PolarisAdminServiceAuthzTest.java
@@ -642,6 +642,7 @@ public class PolarisAdminServiceAuthzTest extends
PolarisAuthzTestBase {
adminService.revokePrivilegeOnRootContainerFromPrincipalRole(
PRINCIPAL_ROLE1, privilege))
.shouldPassWith(PolarisPrivilege.CATALOG_ROLE_MANAGE_GRANTS_ON_SECURABLE)
+ .shouldPassWith(PolarisPrivilege.CATALOG_MANAGE_ACCESS)
.createTests();
}