From 17b257929b05833b1c9c18d32082334ed22b8fc2 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Mon, 19 Jun 2017 16:14:19 -0400 Subject: [PATCH] git/githistory/log: implement Durable() on ChanTask in tests --- git/githistory/log/log_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git/githistory/log/log_test.go b/git/githistory/log/log_test.go index 59b57260..43de8de1 100644 --- a/git/githistory/log/log_test.go +++ b/git/githistory/log/log_test.go @@ -13,6 +13,8 @@ type ChanTask chan string func (e ChanTask) Updates() <-chan string { return e } +func (e ChanTask) Durable() Bool { return false } + type DurableChanTask chan string func (e DurableChanTask) Updates() <-chan string { return e }