Skip to content

Commit 1327d97

Browse files
committed
RUM-12103: fix ktlint
1 parent 0173adf commit 1327d97

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

features/dd-sdk-android-trace-otel/src/test/kotlin/com/datadog/opentelemetry/trace/OtelSpanBuilderTest.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)