Merge pull request #46517 from ngocnhan-tran1996

* pr/46517:
  Fix typos

Closes gh-46517
This commit is contained in:
Stéphane Nicoll 2025-07-25 16:20:54 +02:00
commit d92976e69f
4 changed files with 13 additions and 13 deletions

View File

@ -436,7 +436,7 @@ class JsonWriterTests {
}
@Test
void usingMemebersWithoutNameAtAll() {
void usingMembersWithoutNameAtAll() {
Couple couple = new Couple(PERSON, new Person("Spring", "Framework", 20));
JsonWriter<Couple> writer = JsonWriter.of((members) -> members.from(Couple::person2)
.usingMembers((personMembers) -> personMembers.from(Person::toString)));

View File

@ -69,7 +69,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
... 1 more
""");
@ -85,7 +85,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Caused by: java.lang.RuntimeException: cause
@ -115,7 +115,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
""");
@ -177,7 +177,7 @@ class StandardStackTracePrinterTests {
Wrapped by: java.lang.RuntimeException: exception
at org.springframework.boot.logging.TestException.actualCreateException(TestException.java:NN)
... 3 filtered
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
... 1 more
""");
@ -201,7 +201,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.actualCreateException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
... 2 filtered
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
""");
@ -253,7 +253,7 @@ class StandardStackTracePrinterTests {
Wrapped by: java.lang.RuntimeException: exception
... 3 filtered
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
... 1 filtered
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
""");
@ -284,7 +284,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: RuntimeException: supressed
Suppressed: RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
... 1 more
Caused by: RuntimeException: cause
@ -316,7 +316,7 @@ class StandardStackTracePrinterTests {
at TestException.createException
at TestException.createTestException
at TestException.CreatorThread.run
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at TestException.createTestException
... 1 more
Caused by: java.lang.RuntimeException: cause
@ -340,7 +340,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:59)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:49)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:77)
Suppressed: <#834defc3> java.lang.RuntimeException: supressed
Suppressed: <#834defc3> java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:50)
... 1 more
Caused by: <#611639c5> java.lang.RuntimeException: cause
@ -367,7 +367,7 @@ class StandardStackTracePrinterTests {
at org.springframework.boot.logging.TestException.createException(TestException.java:NN)
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
at org.springframework.boot.logging.TestException$CreatorThread.run(TestException.java:NN)
Suppressed: java.lang.RuntimeException: supressed
Suppressed: java.lang.RuntimeException: suppressed
at org.springframework.boot.logging.TestException.createTestException(TestException.java:NN)
... 1 more
Caused by: java.lang.RuntimeException: cause

View File

@ -47,7 +47,7 @@ public final class TestException {
Throwable root = new RuntimeException("root");
Throwable cause = createCause(root);
Exception exception = createException(cause);
exception.addSuppressed(new RuntimeException("supressed"));
exception.addSuppressed(new RuntimeException("suppressed"));
return exception;
}

View File

@ -176,7 +176,7 @@ class NettyReactiveWebServerFactoryTests extends AbstractReactiveWebServerFactor
@Override
@Test
@Disabled("Reactor Netty does not support mutiple ports")
@Disabled("Reactor Netty does not support multiple ports")
protected void startedLogMessageWithMultiplePorts() {
}