Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-06-05 23:17:51 +0300
committerKim Carlbäcker <kim.carlbacker@gmail.com>2018-06-05 23:17:51 +0300
commit3d7234d8af40eb753b45b093aa16c020fbe5f340 (patch)
tree17a0d23f82c6907730bb81b740c4292e691cb5d1 /internal/rubyserver
parent3fa71ee1cb88199497524e8f19846d0936101c4e (diff)
Simplify and rename AssertGrpcError
Diffstat (limited to 'internal/rubyserver')
-rw-r--r--internal/rubyserver/rubyserver_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rubyserver/rubyserver_test.go b/internal/rubyserver/rubyserver_test.go
index 5233d720c..bc0d100b5 100644
--- a/internal/rubyserver/rubyserver_test.go
+++ b/internal/rubyserver/rubyserver_test.go
@@ -76,7 +76,7 @@ func TestSetHeaders(t *testing.T) {
clientCtx, err := tc.setter(ctx, tc.repo)
if tc.errType != codes.OK {
- testhelper.AssertGrpcError(t, err, tc.errType, "")
+ testhelper.RequireGrpcError(t, err, tc.errType)
assert.Nil(t, clientCtx)
} else {
assert.NoError(t, err)