Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ void usingMembersWithoutNameInMember() {
}

@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)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void rootFirstPrintsStackTrace() {
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
""");
Expand All @@ -85,7 +85,7 @@ void withCommonFramesWhenRootLastPrintsAllFrames() {
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
Expand Down Expand Up @@ -115,7 +115,7 @@ void withCommonFramesWhenRootFirstPrintsAllFrames() {
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)
""");
Expand Down Expand Up @@ -177,7 +177,7 @@ void withMaximumThrowableDepthFiltersElements() {
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
""");
Expand All @@ -201,7 +201,7 @@ void withMaximumThrowableDepthAndCommonFramesFiltersElements() {
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)
""");
Expand Down Expand Up @@ -253,7 +253,7 @@ void withFrameFilter() {
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)
""");
Expand Down Expand Up @@ -284,7 +284,7 @@ void withFormatterFormatsThrowable() {
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
Expand Down Expand Up @@ -316,7 +316,7 @@ void withFrameFormatterFormatsFrame() {
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
Expand All @@ -340,7 +340,7 @@ void withHashesFunctionPrintsStackTraceWithHashes() {
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
Expand All @@ -367,7 +367,7 @@ private String standardStackTrace() {
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private static Exception createTestException() {
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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ void whenServerIsShuttingDownGracefullyThenNewConnectionsCannotBeMade() {

@Override
@Test
@Disabled("Reactor Netty does not support mutiple ports")
@Disabled("Reactor Netty does not support multiple ports")
protected void startedLogMessageWithMultiplePorts() {
}

Expand Down