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 53ee23865d [SYNCOPE-1720] Fixing AuditITCase#issueSYNCOPE1695
53ee23865d is described below

commit 53ee23865d4f3a88c966796a33b1bcfe80074096
Author: Francesco Chicchiriccò <ilgro...@apache.org>
AuthorDate: Tue Jan 10 13:44:13 2023 +0100

    [SYNCOPE-1720] Fixing AuditITCase#issueSYNCOPE1695
---
 .../src/test/java/org/apache/syncope/fit/core/AuditITCase.java      | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuditITCase.java 
b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuditITCase.java
index d76167c8c0..66a83a2987 100644
--- 
a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuditITCase.java
+++ 
b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuditITCase.java
@@ -627,13 +627,11 @@ public class AuditITCase extends AbstractITCase {
                 }
             }
 
-            assertEquals(2, AUDIT_SERVICE.search(new AuditQuery.Builder().
+            assertEquals(1, AUDIT_SERVICE.search(new AuditQuery.Builder().
                     entityKey(pullFromLDAP.getKey()).
                     page(1).
                     size(10).
-                    events(List.of(
-                            "create", "update", "matchingrule_update", 
"unmatchingrule_assign",
-                            "unmatchingrule_provision")).
+                    events(List.of("matchingrule_update", 
"unmatchingrule_assign", "unmatchingrule_provision")).
                     result(AuditElements.Result.SUCCESS).
                     build()).getTotalCount());
         } finally {

Reply via email to