Skip to content

Commit a243d23

Browse files
committed
Merge branch '4.0.x'
Closes gh-50497
2 parents 7e29e3c + 8e337c5 commit a243d23

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/spring-boot/src/test/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBeanTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private void doubleRegistration() throws ServletException {
234234
}
235235

236236
@Test
237-
void doesntFailIfDoubleRegistrationIsIgnored() {
237+
void doesNotFailIfDoubleRegistrationIsIgnored() {
238238
assertThatCode(() -> {
239239
AbstractFilterRegistrationBean<?> bean = createFilterRegistrationBean();
240240
bean.setName("double-registration");

module/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/remote/client/RemoteClientConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void warnIfNotHttps(CapturedOutput output) {
9292
}
9393

9494
@Test
95-
void doesntWarnIfUsingHttps(CapturedOutput output) {
95+
void doesNotWarnIfUsingHttps(CapturedOutput output) {
9696
configure("https://localhost", true);
9797
assertThat(output).doesNotContain("is insecure");
9898
}

module/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/SilentExitExceptionHandlerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void run() {
4747
}
4848

4949
@Test
50-
void doesntInterfereWithOtherExceptions() throws Exception {
50+
void doesNotInterfereWithOtherExceptions() throws Exception {
5151
TestThread testThread = new TestThread() {
5252
@Override
5353
public void run() {

0 commit comments

Comments
 (0)