File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dd-trace-core/src/test/groovy/datadog/trace/core/scopemanager Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -252,16 +252,16 @@ class ScopeManagerTest extends DDCoreSpecification {
252252
253253 def " DDScope only creates continuations when propagation is set" () {
254254 when :
255- def span = tracer. buildSpan(" test" ). start()
255+ def span = tracer. buildSpan(" test" , " test " ). start()
256256 def scope = tracer. activateSpan(span)
257- setAsyncPropagation(false )
257+ tracer . setAsyncPropagation(false )
258258 def continuation = concurrent ? scope. captureConcurrent() : scope. capture()
259259
260260 then :
261261 continuation == null
262262
263263 when :
264- setAsyncPropagation(true )
264+ tracer . setAsyncPropagation(true )
265265 continuation = concurrent ? scope. captureConcurrent() : scope. capture()
266266
267267 then :
You can’t perform that action at this time.
0 commit comments