diff --git a/task/backend/executor/support_test.go b/task/backend/executor/support_test.go index 3465c210c..b12262149 100644 --- a/task/backend/executor/support_test.go +++ b/task/backend/executor/support_test.go @@ -25,8 +25,8 @@ type fakeQueryService struct { mostRecentCtx context.Context } -func makeAST(q string) lang.ASTCompiler { - pkg, err := runtime.ParseToJSON(q) +func makeAST(ctx context.Context, q string) lang.ASTCompiler { + pkg, err := runtime.ParseToJSON(ctx, q) if err != nil { panic(err) }