We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc086f commit 3b5521fCopy full SHA for 3b5521f
task/backend/executor/support_test.go
@@ -25,8 +25,8 @@ type fakeQueryService struct {
25
mostRecentCtx context.Context
26
}
27
28
-func makeAST(q string) lang.ASTCompiler {
29
- pkg, err := runtime.ParseToJSON(q)
+func makeAST(ctx context.Context, q string) lang.ASTCompiler {
+ pkg, err := runtime.ParseToJSON(ctx, q)
30
if err != nil {
31
panic(err)
32
0 commit comments