aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2019-04-03 16:04:43 +0200
committerGitHub <noreply@github.com>2019-04-03 16:04:43 +0200
commitb5892b7f165d0aea3910cbaaca8f049ce425b137 (patch)
tree486739edf8dbca1082c46f33211a6bdb90f06463 /jdisc_core/src/test
parentea56eae3f73af014d90956a96c719b94efc7ed5a (diff)
Revert "Handle 'https' scheme in uri pattern matching as 'http'"
Diffstat (limited to 'jdisc_core/src/test')
-rw-r--r--jdisc_core/src/test/java/com/yahoo/jdisc/application/UriPatternTestCase.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/jdisc_core/src/test/java/com/yahoo/jdisc/application/UriPatternTestCase.java b/jdisc_core/src/test/java/com/yahoo/jdisc/application/UriPatternTestCase.java
index d2499bbf369..c91a7134c3a 100644
--- a/jdisc_core/src/test/java/com/yahoo/jdisc/application/UriPatternTestCase.java
+++ b/jdisc_core/src/test/java/com/yahoo/jdisc/application/UriPatternTestCase.java
@@ -295,15 +295,6 @@ public class UriPatternTestCase {
assertMatch(httpsPattern, "https://host/path", NO_GROUPS);
}
- @Test
- public void requireThatHttpsSchemeIsHandledAsHttp() {
- UriPattern httpPattern = new UriPattern("http://host:80/path");
- assertMatch(httpPattern, "https://host:80/path", NO_GROUPS);
-
- UriPattern httpsPattern = new UriPattern("https://host:443/path");
- assertMatch(httpsPattern, "http://host:443/path", NO_GROUPS);
- }
-
private static void assertIllegalPattern(String uri) {
try {
new UriPattern(uri);