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/pull_create_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/pull_create_test.go')
-rw-r--r-- | tests/integration/pull_create_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/pull_create_test.go b/tests/integration/pull_create_test.go index 35f7cb8ab7..3a13fb4fcb 100644 --- a/tests/integration/pull_create_test.go +++ b/tests/integration/pull_create_test.go @@ -67,7 +67,7 @@ func TestPullCreate(t *testing.T) { resp = session.MakeRequest(t, req, http.StatusOK) assert.Regexp(t, `\+Hello, World \(Edited\)`, resp.Body) assert.Regexp(t, "diff", resp.Body) - assert.Regexp(t, `Subject: \[PATCH\] Update 'README.md'`, resp.Body) + assert.Regexp(t, `Subject: \[PATCH\] Update README.md`, resp.Body) assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one }) } |