diff options
author | Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> | 2023-04-17 22:04:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 18:04:26 -0400 |
commit | 2ef6ac8dbf912d887982c9927fadbd8ff2dd96cc (patch) | |
tree | bf8bb71ecdc5221f487c68e54ccb9576388100af /tests/integration/git_test.go | |
parent | 96117106362aa80fffb5de9ce2b8cdf7a0794835 (diff) | |
download | gitea-2ef6ac8dbf912d887982c9927fadbd8ff2dd96cc.tar.gz gitea-2ef6ac8dbf912d887982c9927fadbd8ff2dd96cc.zip |
Use double quotes consistently in en-US (#24141)
Also removes quotes in commit messages related to file modifications
made in the Web UI.
Diffstat (limited to 'tests/integration/git_test.go')
-rw-r--r-- | tests/integration/git_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/git_test.go b/tests/integration/git_test.go index 95c6d83e54..95323b91c6 100644 --- a/tests/integration/git_test.go +++ b/tests/integration/git_test.go @@ -439,7 +439,7 @@ func doProtectBranch(ctx APITestContext, branch, userToWhitelist, unprotectedFil // Check if master branch has been locked successfully flashCookie := ctx.Session.GetCookie(gitea_context.CookieNameFlash) assert.NotNil(t, flashCookie) - assert.EqualValues(t, "success%3DBranch%2Bprotection%2Bfor%2Brule%2B%2527"+url.QueryEscape(branch)+"%2527%2Bhas%2Bbeen%2Bupdated.", flashCookie.Value) + assert.EqualValues(t, "success%3DBranch%2Bprotection%2Bfor%2Brule%2B%2522"+url.QueryEscape(branch)+"%2522%2Bhas%2Bbeen%2Bupdated.", flashCookie.Value) } } |