File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
instrumentation/opentelemetry-instrumentation-threading/tests Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,7 @@ def test_trace_context_propagation_in_thread_pool_with_multiple_workers(
75
75
result_span_contexts = [future .result () for future in futures_list ]
76
76
77
77
# check result
78
- self .assertEqual (len (result_span_contexts ), max_workers )
79
- self .assertEqual (
80
- len (result_span_contexts ), len (expected_span_contexts )
81
- )
82
- for index , result_span_context in enumerate (result_span_contexts ):
83
- self .assertEqual (
84
- result_span_context , expected_span_contexts [index ]
85
- )
78
+ self .assertEqual (result_span_contexts , expected_span_contexts )
86
79
87
80
def test_trace_context_propagation_in_thread_pool_with_single_worker (self ):
88
81
max_workers = 1
You can’t perform that action at this time.
0 commit comments