File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
features/dd-sdk-android-trace-otel/src/test/kotlin/com/datadog/opentelemetry/trace Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -93,9 +93,13 @@ internal class OtelSpanBuilderTest {
9393 fun `M add attribute W setAttribute with reserved attribute key` () {
9494 // When
9595 testedBuilder.setAttribute(
96- AttributeKey .stringKey(OtelConventions .OPERATION_NAME_SPECIFIC_ATTRIBUTE ), " op_name" )
96+ AttributeKey .stringKey(OtelConventions .OPERATION_NAME_SPECIFIC_ATTRIBUTE ),
97+ " op_name"
98+ )
9799 testedBuilder.setAttribute(
98- AttributeKey .stringKey(OtelConventions .ANALYTICS_EVENT_SPECIFIC_ATTRIBUTES ), " false" )
100+ AttributeKey .stringKey(OtelConventions .ANALYTICS_EVENT_SPECIFIC_ATTRIBUTES ),
101+ " false"
102+ )
99103
100104 // Then
101105 verifyNoInteractions(mockDelegateBuilder)
You can’t perform that action at this time.
0 commit comments