Skip to content

Commit e8701e4

Browse files
committed
Fix more TelemetryServiceSpecification tests
1 parent 6fd9a05 commit e8701e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

telemetry/src/test/groovy/datadog/telemetry/TestTelemetryRouter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class TestTelemetryRouter extends TelemetryRouter {
237237
def expected = configuration == null ? null : []
238238
if (configuration != null) {
239239
for (ConfigSetting cs : configuration) {
240-
expected.add([name: cs.normalizedKey(), value: cs.stringValue(), origin: cs.origin.value])
240+
expected.add([name: cs.normalizedKey(), value: cs.stringValue(), origin: cs.origin.value, seq_id: cs.origin.precedence])
241241
}
242242
}
243243
assert this.payload['configuration'] == expected

0 commit comments

Comments
 (0)