[java-identity-provider] branch main updated: IDP-1991 - Remove unused HttpServletResponse reference

Scott Cantor cantor.2 at osu.edu
Mon Aug 8 14:55:05 UTC 2022


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=4f7cb41b5895726b819612d0a937252a9bb922a0

The following commit(s) were added to refs/heads/main by this push:
     new 4f7cb41b5 IDP-1991 - Remove unused HttpServletResponse reference
4f7cb41b5 is described below

commit 4f7cb41b5895726b819612d0a937252a9bb922a0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Aug 8 10:55:02 2022 -0400

    IDP-1991 - Remove unused HttpServletResponse reference
    
    https://shibboleth.atlassian.net/browse/IDP-1991
    
    Fix tests.
---
 .../idp/session/impl/StorageBackedIdPSessionSerializerTest.java          | 1 -
 .../shibboleth/idp/session/impl/testing/SessionManagerBaseTestCase.java  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/StorageBackedIdPSessionSerializerTest.java b/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/StorageBackedIdPSessionSerializerTest.java
index aed5653ce..cffae85a5 100644
--- a/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/StorageBackedIdPSessionSerializerTest.java
+++ b/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/StorageBackedIdPSessionSerializerTest.java
@@ -77,7 +77,6 @@ public class StorageBackedIdPSessionSerializerTest {
         manager.setStorageService(storageService);
         manager.setIDGenerator(new SecureRandomIdentifierGenerationStrategy());
         manager.setHttpServletRequest(new ThreadLocalHttpServletRequestProxy());
-        manager.setHttpServletResponse(new ThreadLocalHttpServletResponseProxy());
         manager.setCookieManager(cookieManager);
         manager.setId("Test Session Manager");
         manager.setTrackSPSessions(true);
diff --git a/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/testing/SessionManagerBaseTestCase.java b/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/testing/SessionManagerBaseTestCase.java
index bf4cf0443..810545625 100644
--- a/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/testing/SessionManagerBaseTestCase.java
+++ b/idp-session-impl/src/test/java/net/shibboleth/idp/session/impl/testing/SessionManagerBaseTestCase.java
@@ -69,7 +69,6 @@ public class SessionManagerBaseTestCase extends OpenSAMLInitBaseTestCase {
         sessionManager.setStorageService(storageService);
         sessionManager.setIDGenerator(new SecureRandomIdentifierGenerationStrategy());
         sessionManager.setHttpServletRequest(requestProxy);
-        sessionManager.setHttpServletResponse(responseProxy);
         sessionManager.setCookieManager(cookieManager);
         sessionManager.setId("Test Session Manager");
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list