From c06fc6b12ff081d72a4eb4ef0e5e5bd2189fb16c Mon Sep 17 00:00:00 2001 From: Marcel Oenning Date: Wed, 25 Aug 2021 20:06:57 +0200 Subject: [PATCH] fix: Tests Signed-off-by: Marcel Oenning --- client/opentracing_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/opentracing_test.go b/client/opentracing_test.go index d293c9d3..650a437f 100644 --- a/client/opentracing_test.go +++ b/client/opentracing_test.go @@ -29,6 +29,9 @@ func (r tres) Message() string { func (r tres) GetHeader(_ string) string { return "the header" } +func (r tres) GetHeaders(_ string) []string { + return []string{"the headers", "the headers2"} +} func (r tres) Body() io.ReadCloser { return ioutil.NopCloser(bytes.NewBufferString("the content")) }