From 9fbd2a50ffb9c93a56647ee59bcab2b446bc5099 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Fri, 23 Oct 2020 20:50:17 +0200 Subject: [PATCH] Fix lint Signed-off-by: Jakub Sztandera --- lib/timedbs/timedbs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timedbs/timedbs_test.go b/lib/timedbs/timedbs_test.go index db21a5d79..e01215bbd 100644 --- a/lib/timedbs/timedbs_test.go +++ b/lib/timedbs/timedbs_test.go @@ -19,7 +19,7 @@ func TestTimedBSSimple(t *testing.T) { tc.clock = mClock tc.doneRotatingCh = make(chan struct{}) - tc.Start(context.Background()) + _ = tc.Start(context.Background()) mClock.Add(1) // IDK why it is needed but it makes it work defer func() {