Browse Source

Polish URL Cleanup

Fixes: gh-6626
pull/6627/head
Rob Winch 7 years ago
parent
commit
e9de49efef
  1. 2
      config/src/test/java/org/springframework/security/config/http/HttpHeadersConfigTests.java
  2. 1
      samples/xml/openid/src/main/webapp/WEB-INF/applicationContext-security.xml

2
config/src/test/java/org/springframework/security/config/http/HttpHeadersConfigTests.java

@ -501,7 +501,7 @@ public class HttpHeadersConfigTests { @@ -501,7 +501,7 @@ public class HttpHeadersConfigTests {
.andExpect(status().isOk())
.andExpect(header().string(
"Public-Key-Pins-Report-Only",
"max-age=5184000 ; pin-sha256=\"d6qzRu9zOECb90Uez27xWltNsj0e1Md7GkYYkVoZWmM=\" ; report-uri=\"http://example.net/pkp-report\""))
"max-age=5184000 ; pin-sha256=\"d6qzRu9zOECb90Uez27xWltNsj0e1Md7GkYYkVoZWmM=\" ; report-uri=\"https://example.net/pkp-report\""))
.andExpect(excludesDefaults());
}

1
samples/xml/openid/src/main/webapp/WEB-INF/applicationContext-security.xml

@ -54,7 +54,6 @@ @@ -54,7 +54,6 @@
<!--
<user-service id="userService">
<user name="https://luke.taylor.myopenid.com/" authorities="ROLE_SUPERVISOR,ROLE_USER" />
<user name="http://luke.taylor.openid.cn/" authorities="ROLE_SUPERVISOR,ROLE_USER" />
<user name="https://raykrueger.blogspot.com/" authorities="ROLE_SUPERVISOR,ROLE_USER" />
<user name="https://spring.security.test.myopenid.com/" authorities="ROLE_SUPERVISOR,ROLE_USER" />
</user-service>

Loading…
Cancel
Save