From ed7de91f6ace23a1459bc6552edf719d62c7c941 Mon Sep 17 00:00:00 2001 From: Gusted Date: Mon, 18 Sep 2023 20:42:38 +0200 Subject: [PATCH] [MODERATION] Fix transfer confirmation (squash) - Fix problem caused by the clearer confirmation for dangerous actions commit. (cherry picked from commit 3488f4a9cb1f7f73103ae0017d644f13ca3ab798) --- tests/integration/block_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/block_test.go b/tests/integration/block_test.go index cb11420140..41b3859e46 100644 --- a/tests/integration/block_test.go +++ b/tests/integration/block_test.go @@ -374,7 +374,7 @@ func TestBlockActions(t *testing.T) { req := NewRequestWithValues(t, "POST", link, map[string]string{ "_csrf": GetCSRF(t, session, link), "action": "transfer", - "repo_name": repo7.Name, + "repo_name": repo7.FullName(), "new_owner_name": doer.Name, }) resp := session.MakeRequest(t, req, http.StatusOK)