summaryrefslogtreecommitdiffstats
path: root/tests/integration/git_test.go
diff options
context:
space:
mode:
authorPanagiotis "Ivory" Vasilopoulos <git@n0toose.net>2023-04-17 22:04:26 +0000
committerGitHub <noreply@github.com>2023-04-17 18:04:26 -0400
commit2ef6ac8dbf912d887982c9927fadbd8ff2dd96cc (patch)
treebf8bb71ecdc5221f487c68e54ccb9576388100af /tests/integration/git_test.go
parent96117106362aa80fffb5de9ce2b8cdf7a0794835 (diff)
downloadgitea-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.go2
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)
}
}