[java-identity-provider COMMIT] /trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/Process...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Sep 1 11:16:48 EDT 2014
Author: scantor
Date: Mon Sep 1 11:16:48 2014
New Revision: 6491
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6491&view=rev
Log:
Missed a check-in.
Modified:
trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutTest.java
Modified: trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutTest.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutTest.java?rev=6491&r1=6490&r2=6491&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutTest.java (original)
+++ trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutTest.java Mon Sep 1 11:16:48 2014
@@ -160,7 +160,7 @@
Assert.assertNull(prc.getSubcontext(SubjectContext.class));
Assert.assertNull(prc.getSubcontext(LogoutContext.class));
- sessionManager.destroySession(session.getId());
+ sessionManager.destroySession(session.getId(), false);
}
@Test public void testSessionOneSPSession() throws SessionException, ResolverException {
@@ -278,7 +278,7 @@
Assert.assertNull(prc.getSubcontext(SubjectContext.class));
Assert.assertNull(prc.getSubcontext(LogoutContext.class));
- sessionManager.destroySession(session.getId());
+ sessionManager.destroySession(session.getId(), false);
}
@Test public void testTwoSessionsOneMatch() throws SessionException, ResolverException {
@@ -330,7 +330,7 @@
Assert.assertTrue(SAML2ObjectSupport.areNameIDsEquivalent(nameId, sp.getNameID()));
Assert.assertEquals(sp.getSessionIndex(), "index");
- sessionManager.destroySession(session2.getId());
+ sessionManager.destroySession(session2.getId(), false);
}
@Test public void testTwoSessions() throws SessionException, ResolverException {
More information about the commits
mailing list