Fix typo in EndpointIdTests

Closes gh-14822
This commit is contained in:
Hanope
2018-10-15 10:32:32 +09:00
committed by Phillip Webb
parent 3eb877425e
commit 535dd7470f

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);