From b08c4276182f4ac96d0797848554b60e9c85ceef Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Mon, 8 Feb 2016 12:48:37 +0000 Subject: [PATCH] Make linter happy --- probe/endpoint/procspy/fixture.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/probe/endpoint/procspy/fixture.go b/probe/endpoint/procspy/fixture.go index baf778fe4..06020dbdb 100644 --- a/probe/endpoint/procspy/fixture.go +++ b/probe/endpoint/procspy/fixture.go @@ -17,9 +17,11 @@ func (f *fixedConnIter) Next() *Connection { // ConnectionProcs. It's designed to be used in tests. type FixedScanner []Connection +// Connections implements ConnectionsScanner.Connections func (s FixedScanner) Connections(_ bool) (ConnIter, error) { iter := fixedConnIter(s) return &iter, nil } +// Stop implements ConnectionsScanner.Stop (dummy since there is no background work) func (s FixedScanner) Stop() {}