[java-opensaml] branch maint-3.4 updated: OSJ-271: HTTPRedirectDeflateEncoder includes query parameters in ...
Brent Putman
putmanb at georgetown.edu
Fri Mar 22 23:48:40 EDT 2019
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch maint-3.4
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=5b1a7f79eb8245928a6b77679280ef64b613069e
The following commit(s) were added to refs/heads/maint-3.4 by this push:
new 5b1a7f7 OSJ-271: HTTPRedirectDeflateEncoder includes query parameters in ...
5b1a7f7 is described below
commit 5b1a7f79eb8245928a6b77679280ef64b613069e
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Fri Mar 22 23:48:28 2019 -0400
OSJ-271: HTTPRedirectDeflateEncoder includes query parameters in ...
Fix Java 8 class that was missed in cherry-pick from master.
---
.../saml2/binding/encoding/impl/HTTPRedirectDeflateEncoderTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoderTest.java b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoderTest.java
index 048cbe4..5837bf6 100644
--- a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoderTest.java
+++ b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoderTest.java
@@ -410,7 +410,7 @@ public class HTTPRedirectDeflateEncoderTest extends XMLObjectBaseTestCase {
Response samlMessage = responseBuilder.buildObject();
samlMessage.setID("foo");
samlMessage.setVersion(SAMLVersion.VERSION_20);
- samlMessage.setIssueInstant(Instant.ofEpochMilli(0));
+ samlMessage.setIssueInstant(new DateTime(0));
samlMessage.setStatus(responseStatus);
SAMLObjectBuilder<Endpoint> endpointBuilder = (SAMLObjectBuilder<Endpoint>) builderFactory
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list