Polish "Allow DurationFormat and PeriodFormat to be used on parameters"
See gh-22646
This commit is contained in:
parent
914452b2cc
commit
f96a688c1b
|
|
@ -833,9 +833,8 @@ class ConfigurationPropertiesTests {
|
|||
source.put("test.duration", "P12D");
|
||||
sources.addLast(new MapPropertySource("test", source));
|
||||
assertThatExceptionOfType(Exception.class)
|
||||
.isThrownBy(() -> load(ConstructorParameterWithFormatConfiguration.class)).satisfies((ex) -> {
|
||||
assertThat(ex).hasCauseInstanceOf(BindException.class);
|
||||
});
|
||||
.isThrownBy(() -> load(ConstructorParameterWithFormatConfiguration.class)).havingCause()
|
||||
.isInstanceOf(BindException.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
@ -845,9 +844,8 @@ class ConfigurationPropertiesTests {
|
|||
source.put("test.period", "P12D");
|
||||
sources.addLast(new MapPropertySource("test", source));
|
||||
assertThatExceptionOfType(Exception.class)
|
||||
.isThrownBy(() -> load(ConstructorParameterWithFormatConfiguration.class)).satisfies((ex) -> {
|
||||
assertThat(ex).hasCauseInstanceOf(BindException.class);
|
||||
});
|
||||
.isThrownBy(() -> load(ConstructorParameterWithFormatConfiguration.class)).havingCause()
|
||||
.isInstanceOf(BindException.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
Loading…
Reference in New Issue