Repository: cxf Updated Branches: refs/heads/master 0c5557917 -> 3d2f6954f
Fixing the typos in the test code Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3d2f6954 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3d2f6954 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3d2f6954 Branch: refs/heads/master Commit: 3d2f6954f46c0437251bf5b18f90e23874562c3d Parents: 0c55579 Author: Sergey Beryozkin <[email protected]> Authored: Wed Sep 28 11:41:23 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Sep 28 11:41:23 2016 +0100 ---------------------------------------------------------------------- .../jaxrs/security/oidc/OIDCDynamicRegistrationTest.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3d2f6954/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oidc/OIDCDynamicRegistrationTest.java ---------------------------------------------------------------------- diff --git a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oidc/OIDCDynamicRegistrationTest.java b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oidc/OIDCDynamicRegistrationTest.java index f85a181..73670cc 100644 --- a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oidc/OIDCDynamicRegistrationTest.java +++ b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oidc/OIDCDynamicRegistrationTest.java @@ -33,9 +33,6 @@ import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase; import org.junit.BeforeClass; -/** - * Some tests for the OAuth 2.0 filters - */ public class OIDCDynamicRegistrationTest extends AbstractBusClientServerTestBase { public static final String PORT = OIDCDynRegistrationServer.PORT; @@ -56,14 +53,14 @@ public class OIDCDynamicRegistrationTest extends AbstractBusClientServerTestBase } @org.junit.Test public void testRegisterClient() throws Exception { - doRestRegisterClient(null); + doTestRegisterClient(null); } @org.junit.Test public void testRegisterClientInitialAccessToken() throws Exception { - doRestRegisterClient("123456789"); + doTestRegisterClient("123456789"); } - private void doRestRegisterClient(String initialAccessToken) throws Exception { + private void doTestRegisterClient(String initialAccessToken) throws Exception { URL busFile = OIDCDynamicRegistrationTest.class.getResource("client.xml"); String address = "https://localhost:" + PORT + "/services"; if (initialAccessToken != null) {
