Fix typo in test from previous commit

See gh-23310
This commit is contained in:
Rossen Stoyanchev 2019-07-22 14:59:38 +01:00
parent 7b73418418
commit acb3d1cf88
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ public class PathPatternParserTests {
@Test
public void separatorTests() {
PathPatternParser parser = new PathPatternParser();
parser.setPathOptions(PathContainer.Options.HTTP_PATH);
parser.setPathOptions(PathContainer.Options.create('.', false));
String rawPattern = "first.second.{last}";
PathPattern pattern = parser.parse(rawPattern);
assertThat(pattern.computePatternString()).isEqualTo(rawPattern);