Commit 535dd747 authored by Hanope's avatar Hanope Committed by Phillip Webb

Fix typo in EndpointIdTests

Closes gh-14822
parent 3eb87742
...@@ -33,7 +33,7 @@ public class EndpointIdTests { ...@@ -33,7 +33,7 @@ public class EndpointIdTests {
public ExpectedException thrown = ExpectedException.none(); public ExpectedException thrown = ExpectedException.none();
@Test @Test
public void ofWhenNullThorowsException() { public void ofWhenNullThrowsException() {
this.thrown.expect(IllegalArgumentException.class); this.thrown.expect(IllegalArgumentException.class);
this.thrown.expectMessage("Value must not be empty"); this.thrown.expectMessage("Value must not be empty");
EndpointId.of(null); EndpointId.of(null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment