diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2021-12-11 12:02:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 12:02:17 +0100 |
commit | f0b111ab70e4e90013658b0835929b2083902017 (patch) | |
tree | 04acaf3ded2a73541c213e10442602e346039bd0 /repository_test.go | |
parent | e60e348f614a7272e4a51bdee8ba20f059ca4cce (diff) | |
parent | 4ccea5bb8d8c12cb31dba22f36864ffb91529559 (diff) | |
download | go-git-f0b111ab70e4e90013658b0835929b2083902017.tar.gz |
Merge pull request #425 from abhinav/error-strings
error strings: Don't capitalize, use periods, or newlines
Diffstat (limited to 'repository_test.go')
-rw-r--r-- | repository_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository_test.go b/repository_test.go index 668828e..e284df8 100644 --- a/repository_test.go +++ b/repository_test.go @@ -2787,7 +2787,7 @@ func (s *RepositorySuite) TestResolveRevisionWithErrors(c *C) { datas := map[string]string{ "efs/heads/master~": "reference not found", "HEAD^3": `Revision invalid : "3" found must be 0, 1 or 2 after "^"`, - "HEAD^{/whatever}": `No commit message match regexp : "whatever"`, + "HEAD^{/whatever}": `no commit message match regexp: "whatever"`, "4e1243bd22c66e76c2ba9eddc1f91394e57f9f83": "reference not found", } |