Polish "Fix error mark position for PatternParseException"

See gh-38944
This commit is contained in:
Moritz Halbritter 2024-01-10 09:21:03 +01:00
parent fccce54d52
commit 47e8f6168f

View File

@ -36,14 +36,11 @@ class PatternParseFailureAnalyzerTests {
@Test
void patternParseFailureQuotesPattern() {
FailureAnalysis failureAnalysis = performAnalysis("/spring/**/framework");
assertThat(failureAnalysis.getDescription()).contains("""
Invalid mapping pattern detected:
/spring/**/framework
^
""");
assertThat(failureAnalysis.getDescription())
.contains("Invalid mapping pattern detected:\n" + "/spring/**/framework\n" + " ^");
assertThat(failureAnalysis.getAction())
.contains("Fix this pattern in your application or switch to the legacy parser"
+ " implementation with 'spring.mvc.pathmatch.matching-strategy=ant_path_matcher'.");
.contains("Fix this pattern in your application or switch to the legacy parser"
+ " implementation with 'spring.mvc.pathmatch.matching-strategy=ant_path_matcher'.");
}
private FailureAnalysis performAnalysis(String pattern) {