From 4ce3ef20856d6b2d815ec9d3e7546848ab417ac7 Mon Sep 17 00:00:00 2001 From: Easwar Swaminathan Date: Thu, 16 May 2019 16:40:02 -0700 Subject: [PATCH] Overlooked a * when making the original commit. --- clientconn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientconn_test.go b/clientconn_test.go index a40527e9505..e7f110d4021 100644 --- a/clientconn_test.go +++ b/clientconn_test.go @@ -679,7 +679,7 @@ func (s) TestWithConnectParams(t *testing.T) { testBackoffStrategySet(t, expected, WithConnectParams(crt)) } -func testBackoffStrategySet(t *testing.T, expected *backoff.Strategy, opts ...DialOption) { +func testBackoffStrategySet(t *testing.T, expected backoff.Strategy, opts ...DialOption) { opts = append(opts, WithInsecure()) conn, err := Dial("passthrough:///foo:80", opts...) if err != nil {