mirror of
https://github.com/go-gitea/gitea.git
synced 2024-05-11 05:55:29 +00:00
Use double quotes consistently in en-US (#24141)
Also removes quotes in commit messages related to file modifications made in the Web UI.
This commit is contained in:
committed by
GitHub
parent
9611710636
commit
2ef6ac8dbf
@ -214,7 +214,7 @@ func TestAPICreateFile(t *testing.T) {
|
||||
req = NewRequestWithJSON(t, "POST", url, &createFileOptions)
|
||||
resp = MakeRequest(t, req, http.StatusCreated)
|
||||
DecodeJSON(t, resp, &fileResponse)
|
||||
expectedMessage := "Add '" + treePath + "'\n"
|
||||
expectedMessage := "Add " + treePath + "\n"
|
||||
assert.EqualValues(t, expectedMessage, fileResponse.Commit.Message)
|
||||
|
||||
// Test trying to create a file that already exists, should fail
|
||||
|
Reference in New Issue
Block a user