You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/10/31 15:40:22 UTC

[sling-org-apache-sling-app-cms] branch master updated: Fixing broken test case

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

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git


The following commit(s) were added to refs/heads/master by this push:
     new 80f9ba8  Fixing broken test case
80f9ba8 is described below

commit 80f9ba8788bbc799524d06ea88d32bd7a0b3ac4b
Author: Dan Klco <dk...@apache.org>
AuthorDate: Thu Oct 31 11:40:12 2019 -0400

    Fixing broken test case
---
 .../sling/cms/core/internal/operations/ChangePasswordOperationTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/test/java/org/apache/sling/cms/core/internal/operations/ChangePasswordOperationTest.java b/core/src/test/java/org/apache/sling/cms/core/internal/operations/ChangePasswordOperationTest.java
index 312b2b8..d142ae2 100644
--- a/core/src/test/java/org/apache/sling/cms/core/internal/operations/ChangePasswordOperationTest.java
+++ b/core/src/test/java/org/apache/sling/cms/core/internal/operations/ChangePasswordOperationTest.java
@@ -66,7 +66,7 @@ public class ChangePasswordOperationTest {
 
         assertNull(response.getError());
 
-        Mockito.verify(user).changePassword("test1", "test2");
+        Mockito.verify(user).changePassword("test1");
 
     }