File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -928,7 +928,7 @@ public void ActivityTraceParentAndTraceStateFromHeaders()
928928 Headers = new HeaderDictionary ( )
929929 {
930930 { "traceparent" , "00-0123456789abcdef0123456789abcdef-0123456789abcdef-01" } ,
931- { "tracestate" , "TraceState =1" } ,
931+ { "tracestate" , "tracestate =1" } ,
932932 { "baggage" , "Key1=value1, Key2=value2" }
933933 }
934934 } ) ;
@@ -937,7 +937,7 @@ public void ActivityTraceParentAndTraceStateFromHeaders()
937937 Assert . Equal ( ActivityIdFormat . W3C , Activity . Current . IdFormat ) ;
938938 Assert . Equal ( "0123456789abcdef0123456789abcdef" , Activity . Current . TraceId . ToHexString ( ) ) ;
939939 Assert . Equal ( "0123456789abcdef" , Activity . Current . ParentSpanId . ToHexString ( ) ) ;
940- Assert . Equal ( "TraceState =1" , Activity . Current . TraceStateString ) ;
940+ Assert . Equal ( "tracestate =1" , Activity . Current . TraceStateString ) ;
941941
942942 Assert . Contains ( Activity . Current . Baggage , pair => pair . Key == "Key1" && pair . Value == "value1" ) ;
943943 Assert . Contains ( Activity . Current . Baggage , pair => pair . Key == "Key2" && pair . Value == "value2" ) ;
You can’t perform that action at this time.
0 commit comments