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/commit/last_commit_for_path_test.go')
-rw-r--r--internal/service/commit/last_commit_for_path_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/service/commit/last_commit_for_path_test.go b/internal/service/commit/last_commit_for_path_test.go
index 484d0ed9e..cfa80149c 100644
--- a/internal/service/commit/last_commit_for_path_test.go
+++ b/internal/service/commit/last_commit_for_path_test.go
@@ -12,8 +12,8 @@ import (
)
func TestSuccessfulLastCommitForPathRequest(t *testing.T) {
- server, serverSocketPath := startTestServices(t)
- defer server.Stop()
+ stop, serverSocketPath := startTestServices(t)
+ defer stop()
client, conn := newCommitServiceClient(t, serverSocketPath)
defer conn.Close()
@@ -93,8 +93,8 @@ func TestSuccessfulLastCommitForPathRequest(t *testing.T) {
}
func TestFailedLastCommitForPathRequest(t *testing.T) {
- server, serverSocketPath := startTestServices(t)
- defer server.Stop()
+ stop, serverSocketPath := startTestServices(t)
+ defer stop()
client, conn := newCommitServiceClient(t, serverSocketPath)
defer conn.Close()