From df460360158ab5314dde716e0e6eda752f3233ee Mon Sep 17 00:00:00 2001 From: Akshay Shah Date: Sat, 11 Jun 2016 15:14:29 -0700 Subject: [PATCH] Remove last reference to testServiceName --- stats_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats_test.go b/stats_test.go index 5bd277d9..214615f6 100644 --- a/stats_test.go +++ b/stats_test.go @@ -99,7 +99,7 @@ func TestStatsCalls(t *testing.T) { ctx, cancel := NewContext(time.Second * 5) defer cancel() - _, _, resp, err := raw.Call(ctx, ch, hostPort, testServiceName, tt.method, nil, nil) + _, _, resp, err := raw.Call(ctx, ch, hostPort, testutils.DefaultServerName, tt.method, nil, nil) require.NoError(t, err, "Call(%v) should fail", tt.method) assert.Equal(t, tt.wantErr, resp.ApplicationError(), "Call(%v) check application error")