Browse Source

Merge pull request #14822 from Hanope

* pr/14822:
  Fix typo in EndpointIdTests
pull/14914/head
Phillip Webb 7 years ago
parent
commit
bb4e9a5bc1
  1. 2
      spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/EndpointIdTests.java

2
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/EndpointIdTests.java

@ -33,7 +33,7 @@ public class EndpointIdTests { @@ -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);

Loading…
Cancel
Save