Fix typo
This commit is contained in:
parent
7848cf3c79
commit
23b377e1a1
|
|
@ -51,22 +51,22 @@ class WebOperationRequestPredicateTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void predicatesWithSinglePathVariablesInTheSamplePlaceAreEqual() {
|
void predicatesWithSinglePathVariablesInTheSamePlaceAreEqual() {
|
||||||
assertThat(predicateWithPath("/path/{foo1}")).isEqualTo(predicateWithPath("/path/{foo2}"));
|
assertThat(predicateWithPath("/path/{foo1}")).isEqualTo(predicateWithPath("/path/{foo2}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void predicatesWithSingleWildcardPathVariablesInTheSamplePlaceAreEqual() {
|
void predicatesWithSingleWildcardPathVariablesInTheSamePlaceAreEqual() {
|
||||||
assertThat(predicateWithPath("/path/{*foo1}")).isEqualTo(predicateWithPath("/path/{*foo2}"));
|
assertThat(predicateWithPath("/path/{*foo1}")).isEqualTo(predicateWithPath("/path/{*foo2}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void predicatesWithSingleWildcardPathVariableAndRegularVariableInTheSamplePlaceAreNotEqual() {
|
void predicatesWithSingleWildcardPathVariableAndRegularVariableInTheSamePlaceAreNotEqual() {
|
||||||
assertThat(predicateWithPath("/path/{*foo1}")).isNotEqualTo(predicateWithPath("/path/{foo2}"));
|
assertThat(predicateWithPath("/path/{*foo1}")).isNotEqualTo(predicateWithPath("/path/{foo2}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void predicatesWithMultiplePathVariablesInTheSamplePlaceAreEqual() {
|
void predicatesWithMultiplePathVariablesInTheSamePlaceAreEqual() {
|
||||||
assertThat(predicateWithPath("/path/{foo1}/more/{bar1}"))
|
assertThat(predicateWithPath("/path/{foo1}/more/{bar1}"))
|
||||||
.isEqualTo(predicateWithPath("/path/{foo2}/more/{bar2}"));
|
.isEqualTo(predicateWithPath("/path/{foo2}/more/{bar2}"));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue