[java-identity-provider COMMIT] /trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingpart...

noreply at shibboleth.net noreply at shibboleth.net
Mon Jun 2 20:02:13 EDT 2014


Author: scantor
Date: Mon Jun  2 20:02:13 2014
New Revision: 6035

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6035&view=rev
Log:
IDP-416 - Align location of MessageChannelSecurityContext to actions that populate it.

Modified:
    trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/BaseSAMLProfileTest.java

Modified: trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/BaseSAMLProfileTest.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/BaseSAMLProfileTest.java?rev=6035&r1=6034&r2=6035&view=diff
==============================================================================
--- trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/BaseSAMLProfileTest.java (original)
+++ trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/BaseSAMLProfileTest.java Mon Jun  2 20:02:13 2014
@@ -76,8 +76,7 @@
     protected static void assertConditionalPredicate(Predicate<ProfileRequestContext> predicate) {
         try {
             final ProfileRequestContext prc = new RequestContextBuilder().buildProfileRequestContext();
-            final MessageChannelSecurityContext mc =
-                    prc.getOutboundMessageContext().getSubcontext(MessageChannelSecurityContext.class, true);
+            final MessageChannelSecurityContext mc = prc.getSubcontext(MessageChannelSecurityContext.class, true);
             
             mc.setConfidentialityActive(true);
             mc.setIntegrityActive(true);



More information about the commits mailing list