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/smarthttp/upload_pack_test.go')
-rw-r--r--internal/service/smarthttp/upload_pack_test.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/internal/service/smarthttp/upload_pack_test.go b/internal/service/smarthttp/upload_pack_test.go
index 7f64ba669..c9aeefbd6 100644
--- a/internal/service/smarthttp/upload_pack_test.go
+++ b/internal/service/smarthttp/upload_pack_test.go
@@ -7,7 +7,6 @@ import (
"io"
"os"
"path"
- "strings"
"testing"
"time"
@@ -191,11 +190,7 @@ func TestUploadPackRequestWithGitProtocol(t *testing.T) {
_, err = makePostUploadPackRequest(t, serverSocketPath, rpcRequest, requestBody)
require.NoError(t, err)
- envData := testhelper.GetGitEnvData()
-
- if !strings.Contains(envData, "GIT_PROTOCOL=version=2") {
- t.Errorf("Expected response to set GIT_PROTOCOL, found %q", envData)
- }
+ require.Equal(t, "GIT_PROTOCOL=version=2", testhelper.GetGitEnv("GIT_PROTOCOL"))
}
// This test is here because git-upload-pack returns a non-zero exit code