diff --git a/task/backend/executor/support_test.go b/task/backend/executor/support_test.go index ddc98b16db1..9f0ddd6a12b 100644 --- a/task/backend/executor/support_test.go +++ b/task/backend/executor/support_test.go @@ -170,10 +170,11 @@ type fakeQuery struct { var _ flux.Query = (*fakeQuery)(nil) -func (q *fakeQuery) Done() {} -func (q *fakeQuery) Cancel() { close(q.results) } -func (q *fakeQuery) Statistics() flux.Statistics { return flux.Statistics{} } -func (q *fakeQuery) Results() <-chan flux.Result { return q.results } +func (q *fakeQuery) Done() {} +func (q *fakeQuery) Cancel() { close(q.results) } +func (q *fakeQuery) Statistics() flux.Statistics { return flux.Statistics{} } +func (q *fakeQuery) Results() <-chan flux.Result { return q.results } +func (q *fakeQuery) ProfilerResults() (flux.ResultIterator, error) { return nil, nil } func (q *fakeQuery) Err() error { if q.ctxErr != nil {