diff options
Diffstat (limited to 'pkg/priority_queue/binary_heap_test.go')
-rw-r--r-- | pkg/priority_queue/binary_heap_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/priority_queue/binary_heap_test.go b/pkg/priority_queue/binary_heap_test.go index 663741ad..21167051 100644 --- a/pkg/priority_queue/binary_heap_test.go +++ b/pkg/priority_queue/binary_heap_test.go @@ -20,6 +20,10 @@ func (t Test) Nack() error { return nil } +func (t Test) Requeue(_ uint32) error { + return nil +} + func (t Test) Body() []byte { return nil } |