File tree 1 file changed +2
-2
lines changed
opentelemetry-otlp/tests/integration_test/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,14 +79,14 @@ impl PartialEq for LogRecordWrapper {
79
79
#[ cfg( feature = "experimental_metadata_attributes" ) ]
80
80
let a_attrs: Vec < _ > = a_attrs
81
81
. into_iter ( )
82
- . filter ( |KeyValue { key, .. } | !key. as_str ( ) . starts_with ( "code." ) )
82
+ . filter ( |opentelemetry :: KeyValue { key, .. } | !key. as_str ( ) . starts_with ( "code." ) )
83
83
. collect ( ) ;
84
84
85
85
let b_attrs = b. attributes . clone ( ) ;
86
86
#[ cfg( feature = "experimental_metadata_attributes" ) ]
87
87
let b_attrs: Vec < _ > = b_attrs
88
88
. into_iter ( )
89
- . filter ( |KeyValue { key, .. } | !key. as_str ( ) . starts_with ( "code." ) )
89
+ . filter ( |opentelemetry :: KeyValue { key, .. } | !key. as_str ( ) . starts_with ( "code." ) )
90
90
. collect ( ) ;
91
91
92
92
assert_eq ! ( a. body, b. body, "body does not match" ) ;
You can’t perform that action at this time.
0 commit comments