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/git/localrepo/blob_test.go')
-rw-r--r--internal/git/localrepo/blob_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/git/localrepo/blob_test.go b/internal/git/localrepo/blob_test.go
index 5534c7328..66e025f70 100644
--- a/internal/git/localrepo/blob_test.go
+++ b/internal/git/localrepo/blob_test.go
@@ -53,9 +53,9 @@ func TestRepo_WriteBlob(t *testing.T) {
content: "\n",
},
{
- desc: "CRLF converted to LF due to global git config",
+ desc: "CRLF not converted to LF due to global git config",
input: strings.NewReader("\r\n"),
- content: "\n",
+ content: "\r\n",
},
{
desc: "line endings preserved in binary files",