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 2018/01/22 10:43:12 UTC

syncope git commit: [SYNCOPE-1263] Fix for JUnit5

Repository: syncope
Updated Branches:
  refs/heads/master 227f08516 -> 520cdca7c


[SYNCOPE-1263] Fix for JUnit5


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/520cdca7
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/520cdca7
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/520cdca7

Branch: refs/heads/master
Commit: 520cdca7cd744dc6919c8d28acabe58fc5b19491
Parents: 227f085
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Mon Jan 22 11:43:05 2018 +0100
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Mon Jan 22 11:43:05 2018 +0100

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/520cdca7/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
----------------------------------------------------------------------
diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
index cc10939..9c2fffe 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
@@ -81,7 +81,7 @@ public class RESTITCase extends AbstractITCase {
         // service with invalid JWT string: 401 unauthorized
         try {
             clientFactory.create(RandomStringUtils.random(20, true, true)).self();
-            fail();
+            fail("This should not happen");
         } catch (AccessControlException e) {
             assertNotNull(e);
         }