#1813 - Tweak integration tests to adapt to changed trailing slash handling in Spring 6.

See [0] for details.

[0] https://github.com/spring-projects/spring-framework/issues/28552
This commit is contained in:
Oliver Drotbohm
2022-07-14 10:51:38 +02:00
parent 9a3f8968a5
commit 0098f2931a
2 changed files with 2 additions and 2 deletions

View File

@@ -496,7 +496,7 @@ class HypermediaWebFluxConfigurerTest {
this.employees.add(new Employee("Frodo Baggins", "ring bearer"));
}
@GetMapping
@GetMapping("/")
RepresentationModel<?> root() {
RepresentationModel<?> root = new RepresentationModel<>();

View File

@@ -432,7 +432,7 @@ class HypermediaWebMvcConfigurerTest {
this.employees.add(new Employee("Frodo Baggins", "ring bearer"));
}
@GetMapping
@GetMapping("/")
RepresentationModel<?> root() {
RepresentationModel<?> root = new RepresentationModel<>();