You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/01/14 16:24:27 UTC

[syncope] branch master updated: Fix build

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0b5c6d2  Fix build
0b5c6d2 is described below

commit 0b5c6d27ed020733674f29df318b12844f8cf173
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Jan 14 17:24:14 2020 +0100

    Fix build
---
 .../src/test/java/org/apache/syncope/fit/core/RoleITCase.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RoleITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RoleITCase.java
index d48a24a..5deceef 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RoleITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RoleITCase.java
@@ -89,7 +89,7 @@ public class RoleITCase extends AbstractITCase {
     public void createWithTilde() {
         RoleTO role = new RoleTO();
         role.getRealms().add(SyncopeConstants.ROOT_REALM);
-        role.getEntitlements().add(StandardEntitlement.LOG_LIST);
+        role.getEntitlements().add(IdRepoEntitlement.LOG_LIST);
         role.setKey("new~" + getUUIDString());
         role = createRole(role);
         assertNotNull(role);