Skip to content

Commit d3ca1e0

Browse files
committed
fix: format
1 parent 1da78e1 commit d3ca1e0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/test_tracer.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1851,9 +1851,7 @@ TEST_TRACER("APM tracing disabled") {
18511851
auto finalized_config = finalize_config(config, clock);
18521852
REQUIRE(finalized_config);
18531853
Tracer tracer{*finalized_config};
1854-
{
1855-
auto root1 = tracer.create_span();
1856-
}
1854+
{ auto root1 = tracer.create_span(); }
18571855
REQUIRE(collector->chunks.size() == 1);
18581856
REQUIRE(collector->chunks.front().size() == 1);
18591857

@@ -1932,9 +1930,7 @@ TEST_TRACER("APM tracing disabled") {
19321930

19331931
// When APM Tracing is disabled, we allow one trace per second for service
19341932
// liveness. To ensure consistency, consume the limiter slot.
1935-
{
1936-
tracer.create_span();
1937-
}
1933+
{ tracer.create_span(); }
19381934
collector->chunks.clear();
19391935

19401936
// Case 1: extracted context with priority, but no `_dd.p.ts` → depends if

0 commit comments

Comments
 (0)