Merge pull request #14822 from Hanope

* pr/14822:
  Fix typo in EndpointIdTests
This commit is contained in:
Phillip Webb 2018-10-14 19:13:07 -07:00
commit bb4e9a5bc1
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class EndpointIdTests {
public ExpectedException thrown = ExpectedException.none();
@Test
public void ofWhenNullThorowsException() {
public void ofWhenNullThrowsException() {
this.thrown.expect(IllegalArgumentException.class);
this.thrown.expectMessage("Value must not be empty");
EndpointId.of(null);