URL Cleanup - fix links

See gh-22617 gh-22622 gh-22635
This commit is contained in:
Sam Brannen
2019-03-23 11:52:49 +01:00
parent 7fe12cc23e
commit cedcd2fddd
4 changed files with 7 additions and 6 deletions

View File

@@ -441,7 +441,7 @@ public class ForwardedHeaderFilterTests {
this.request.addHeader(X_FORWARDED_HOST, "example.com");
this.request.addHeader(X_FORWARDED_PORT, "443");
String location = "https://weibo.com/otherinfo/foo/bar";
String location = "http://example.org/foo/bar";
String redirectedUrl = sendRedirect(location);
assertEquals(location, redirectedUrl);
}