You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2016/04/14 18:15:37 UTC

cxf git commit: Fixing a typo

Repository: cxf
Updated Branches:
  refs/heads/master 0caf56378 -> 5c9993600


Fixing a typo


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/5c999360
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/5c999360
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/5c999360

Branch: refs/heads/master
Commit: 5c999360016e11d9173888936e08b185a89e009a
Parents: 0caf563
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Thu Apr 14 17:15:23 2016 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Thu Apr 14 17:15:23 2016 +0100

----------------------------------------------------------------------
 .../cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/5c999360/rt/rs/security/oauth-parent/oauth2/src/test/java/org/apache/cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java
----------------------------------------------------------------------
diff --git a/rt/rs/security/oauth-parent/oauth2/src/test/java/org/apache/cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java b/rt/rs/security/oauth-parent/oauth2/src/test/java/org/apache/cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java
index ec0c020..8b23e22 100644
--- a/rt/rs/security/oauth-parent/oauth2/src/test/java/org/apache/cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java
+++ b/rt/rs/security/oauth-parent/oauth2/src/test/java/org/apache/cxf/rs/security/oauth2/provider/JPAOAuthDataProviderTest.java
@@ -74,7 +74,7 @@ public class JPAOAuthDataProviderTest extends Assert {
         compareClients(c, c2);
         
         c2.setClientSecret("567");
-        provider.setClient(c);
+        provider.setClient(c2);
         Client c22 = provider.getClient(c.getClientId());
         compareClients(c2, c22);