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:
authorSami Hiltunen <shiltunen@gitlab.com>2021-09-20 16:43:26 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-09-20 17:20:24 +0300
commitcea9b23536ec96d7a6acef017dde26dd651774a3 (patch)
tree1201d75712b80c3bec619b9d47cafed10d5a8d66
parenta465cda05553f2368a5eb8463b9b319a71d38b4e (diff)
Rename the test case of RepositoryExistsHandler
RepositoryExists is registered as a handler in Praefect and not handled via an interceptor since 7b01a3b2. The change did not rename the test case to reflect the new approach. This commit amends the test name.
-rw-r--r--internal/praefect/repository_exists_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/praefect/repository_exists_test.go b/internal/praefect/repository_exists_test.go
index 5b1689fe3..45e315299 100644
--- a/internal/praefect/repository_exists_test.go
+++ b/internal/praefect/repository_exists_test.go
@@ -20,7 +20,7 @@ import (
"google.golang.org/grpc/status"
)
-func TestRepositoryExistsStreamInterceptor(t *testing.T) {
+func TestRepositoryExistsHandler(t *testing.T) {
t.Parallel()
errServedByGitaly := status.Error(codes.Unknown, "request passed to Gitaly")