```java public class SpringPathPatternTest { @Test public void testDoubleStar() { PathPattern pathPattern = new PathPatternParser().parse("/first/**/last"); PathContainer path = PathContainer.parsePath("/first/a/b/c/last"); assertTrue(pathPattern.matches(path)); // FAILED !!! } } ``` tested on spring-web 5.1.5.RELEASE