Fix test to match new constructors. (#1234)

Fix test to match new constructors.
This commit is contained in:
Tyler Benson 2020-02-19 16:22:59 -08:00 committed by GitHub
commit 40f44c318c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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")