From 5b505cdd865bc64808c8e27c0add86a9b7c21c9e Mon Sep 17 00:00:00 2001 From: Will Scott Date: Sun, 31 Jul 2022 14:22:48 +0200 Subject: [PATCH] fix static issue --- test/provide_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/provide_test.go b/test/provide_test.go index 71f40bc..0307bb5 100644 --- a/test/provide_test.go +++ b/test/provide_test.go @@ -35,7 +35,7 @@ func TestProvideRoundtrip(t *testing.T) { }, AdvisoryTTL: time.Hour, } - rc, err := c.Provide(context.Background(), &req) + _, err = c.Provide(context.Background(), &req) if err == nil { t.Fatal("should get sync error on unsigned provide request.") }