From 3488f4a9cb1f7f73103ae0017d644f13ca3ab798 Mon Sep 17 00:00:00 2001
From: Gusted <postmaster@gusted.xyz>
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.
---
 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)