This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/master by this push:
     new 4487dc1ae RANGER-5461: fix unit test failure caused by previous fix 
for RANGER-5461
4487dc1ae is described below

commit 4487dc1aeeb0b57c3e60be3931fa276f47cf0700
Author: Madhan Neethiraj <[email protected]>
AuthorDate: Tue Jan 27 23:12:32 2026 -0800

    RANGER-5461: fix unit test failure caused by previous fix for RANGER-5461
---
 .../ranger/unixusersync/process/TestPolicyMgrUserGroupBuilder.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/ugsync/src/test/java/org/apache/ranger/unixusersync/process/TestPolicyMgrUserGroupBuilder.java
 
b/ugsync/src/test/java/org/apache/ranger/unixusersync/process/TestPolicyMgrUserGroupBuilder.java
index 901d4b542..abb23cbcf 100644
--- 
a/ugsync/src/test/java/org/apache/ranger/unixusersync/process/TestPolicyMgrUserGroupBuilder.java
+++ 
b/ugsync/src/test/java/org/apache/ranger/unixusersync/process/TestPolicyMgrUserGroupBuilder.java
@@ -470,7 +470,7 @@ public void 
testU_computeDeletedGroups_and_getDeletedGroups_throwOnRest() throws
         attrs.put(UgsyncCommonConstants.LDAP_URL, "ldap://example";);
         g.setOtherAttrsMap(attrs);
         g.setOtherAttributes(JsonUtils.objectToJson(attrs));
-        g.setIsVisible("0");
+        g.setIsVisible("1");
         gcache.put("Gdel", g);
         setPrivate(builder, "groupCache", gcache);
 
@@ -640,7 +640,7 @@ public void 
testAB_updateDeletedGroups_and_Users_wrappers_throw() throws Excepti
         attrsG.put(UgsyncCommonConstants.LDAP_URL, "ldap://example";);
         g.setOtherAttrsMap(attrsG);
         g.setOtherAttributes(JsonUtils.objectToJson(attrsG));
-        g.setIsVisible("0");
+        g.setIsVisible("1");
         gcache.put("Gdel2", g);
         setPrivate(builder, "groupCache", gcache);
 

Reply via email to