Merge branch '2.0.x'

This commit is contained in:
Phillip Webb 2018-10-14 19:14:04 -07:00
commit cfa130b2ef
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
public class EndpointIdTests {
@Test
public void ofWhenNullThorowsException() {
public void ofWhenNullThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> EndpointId.of(null))
.withMessage("Value must not be empty");
}