File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/test/java/com/sap/ai/sdk/core/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ void testRequestLogContextLifecycle() {
2525 assertThat (MDC .get ("destination" )).isEqualTo ("http://localhost:8000" );
2626
2727 RequestLogContext .logRequestStart ();
28- assertThat (MDC .get ("reqId " )).isNotNull ().hasSize (8 );
28+ assertThat (MDC .get ("callId " )).isNotNull ().hasSize (8 );
2929
3030 RequestLogContext .clear ();
3131 assertThat (MDC .get ("service" )).isNull ();
3232 assertThat (MDC .get ("mode" )).isNull ();
3333 assertThat (MDC .get ("endpoint" )).isNull ();
3434 assertThat (MDC .get ("destination" )).isNull ();
35- assertThat (MDC .get ("reqId " )).isNull ();
35+ assertThat (MDC .get ("callId " )).isNull ();
3636 assertThat (MDC .get ("consumer-key" )).isEqualTo ("consumer-value" );
3737 }
3838}
You can’t perform that action at this time.
0 commit comments