You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by sk...@apache.org on 2020/03/04 16:36:37 UTC

[syncope] branch SYNCOPE-163-1 updated: [SYNCOPE-163] Renaming methods

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

skylark17 pushed a commit to branch SYNCOPE-163-1
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/SYNCOPE-163-1 by this push:
     new f72c831  [SYNCOPE-163] Renaming methods
f72c831 is described below

commit f72c831904bbde16d9fdfc746b3c20addd705c9c
Author: skylark17 <sk...@apache.org>
AuthorDate: Wed Mar 4 17:36:24 2020 +0100

    [SYNCOPE-163] Renaming methods
---
 .../apache/syncope/fit/core/OpenIdConnectRelyingPartyITCase.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/OpenIdConnectRelyingPartyITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/OpenIdConnectRelyingPartyITCase.java
index 7dc03cf..2e26f46 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/OpenIdConnectRelyingPartyITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/OpenIdConnectRelyingPartyITCase.java
@@ -34,12 +34,12 @@ import org.apache.syncope.common.lib.SyncopeClientException;
 public class OpenIdConnectRelyingPartyITCase extends AbstractITCase {
 
     @Test
-    public void createRelyingParty() throws IOException {
+    public void create() throws IOException {
         createOpenIdConnectRelyingParty(buildRelyingParty());
     }
 
     @Test
-    public void findRelyingParty() {
+    public void read() {
         OpenIdConnectRelyingPartyTO rpTO = buildRelyingParty();
         rpTO = createOpenIdConnectRelyingParty(rpTO);
 
@@ -52,7 +52,7 @@ public class OpenIdConnectRelyingPartyITCase extends AbstractITCase {
     }
 
     @Test
-    public void updateRelyingParty() {
+    public void update() {
         OpenIdConnectRelyingPartyTO rpTO = buildRelyingParty();
         rpTO = createOpenIdConnectRelyingParty(rpTO);
 
@@ -75,7 +75,7 @@ public class OpenIdConnectRelyingPartyITCase extends AbstractITCase {
     }
 
     @Test
-    public void deleteRelyingParty() {
+    public void delete() {
         OpenIdConnectRelyingPartyTO rpTO = buildRelyingParty();
         rpTO = createOpenIdConnectRelyingParty(rpTO);