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:
Diffstat (limited to 'internal/service/ref/refs_test.go')
-rw-r--r--internal/service/ref/refs_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/service/ref/refs_test.go b/internal/service/ref/refs_test.go
index f882f4d4c..c50631825 100644
--- a/internal/service/ref/refs_test.go
+++ b/internal/service/ref/refs_test.go
@@ -1076,7 +1076,6 @@ func TestInvalidFindAllBranchesRequest(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.description, func(t *testing.T) {
-
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
c, err := client.FindAllBranches(ctx, &tc.request)
@@ -1421,7 +1420,6 @@ func TestSuccessfulFindTagRequest(t *testing.T) {
}
for _, expectedTag := range expectedTags {
-
rpcRequest := &gitalypb.FindTagRequest{Repository: testRepoCopy, TagName: expectedTag.Name}
resp, err := client.FindTag(ctx, rpcRequest)