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/cleanup/apply_bfg_object_map_stream_test.go')
-rw-r--r--internal/service/cleanup/apply_bfg_object_map_stream_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/service/cleanup/apply_bfg_object_map_stream_test.go b/internal/service/cleanup/apply_bfg_object_map_stream_test.go
index 9eb19da78..a613f75b2 100644
--- a/internal/service/cleanup/apply_bfg_object_map_stream_test.go
+++ b/internal/service/cleanup/apply_bfg_object_map_stream_test.go
@@ -17,8 +17,8 @@ import (
)
func TestApplyBfgObjectMapStreamSuccess(t *testing.T) {
- server, serverSocketPath := runCleanupServiceServer(t)
- defer server.Stop()
+ stop, serverSocketPath := runCleanupServiceServer(t)
+ defer stop()
client, conn := newCleanupServiceClient(t, serverSocketPath)
defer conn.Close()
@@ -81,8 +81,8 @@ func requireEntry(t *testing.T, entry *gitalypb.ApplyBfgObjectMapStreamResponse_
}
func TestApplyBfgObjectMapStreamFailsOnInvalidInput(t *testing.T) {
- server, serverSocketPath := runCleanupServiceServer(t)
- defer server.Stop()
+ stop, serverSocketPath := runCleanupServiceServer(t)
+ defer stop()
client, conn := newCleanupServiceClient(t, serverSocketPath)
defer conn.Close()