Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 418e1ad6a -> bb3da5c5c
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/bb3da5c5 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/bb3da5c5 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/bb3da5c5 Branch: refs/heads/3.1.x-fixes Commit: bb3da5c5cf2cb938370da57c9dfaa2ba2a0fe6ba Parents: 418e1ad Author: Sergey Beryozkin <[email protected]> Authored: Wed Sep 28 11:41:23 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Sep 28 11:43:59 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/bb3da5c5/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) {
