Commit bb4e9a5b authored by Phillip Webb's avatar Phillip Webb

Merge pull request #14822 from Hanope

* pr/14822:
  Fix typo in EndpointIdTests
parents 3eb87742 535dd747
...@@ -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