Fix test to match new constructors. (#1234)
Fix test to match new constructors.
This commit is contained in:
commit
40f44c318c
|
@ -37,8 +37,9 @@ class ScopeEventTest extends Specification {
|
||||||
false,
|
false,
|
||||||
"fakeType",
|
"fakeType",
|
||||||
null,
|
null,
|
||||||
new PendingTrace(tracer, 123, [:]),
|
new PendingTrace(tracer, 123),
|
||||||
tracer)
|
tracer,
|
||||||
|
[:])
|
||||||
def builder = tracer.buildSpan("test operation")
|
def builder = tracer.buildSpan("test operation")
|
||||||
.asChildOf(parentContext)
|
.asChildOf(parentContext)
|
||||||
.withServiceName("test service")
|
.withServiceName("test service")
|
||||||
|
|
Loading…
Reference in New Issue