Skip to content

Commit 1f26561

Browse files
chore: we don't need that many spans
1 parent c932cf7 commit 1f26561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_encoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_trace_with_links_accepted_by_agent(self, span_links_kwargs):
7676
with mock.patch("ddtrace.internal.writer.writer.log") as log:
7777
with tracer.trace("root", service="test_encoding", resource="test_resource") as root:
7878
root.set_link(**span_links_kwargs)
79-
for _ in range(999):
79+
for _ in range(10):
8080
with tracer.trace("child") as child:
8181
child.set_link(**span_links_kwargs)
8282
tracer.shutdown()

0 commit comments

Comments
 (0)