From 152f26f05b7d860ffe3560fe132fdbae5701f59a Mon Sep 17 00:00:00 2001
From: hazycora <hazysu@riseup.net>
Date: Thu, 29 Feb 2024 13:29:35 -0600
Subject: [PATCH] remove unused assignment

---
 tests/integration/user_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/integration/user_test.go b/tests/integration/user_test.go
index 4529d17e14..11df76034e 100644
--- a/tests/integration/user_test.go
+++ b/tests/integration/user_test.go
@@ -583,7 +583,7 @@ func TestUserPronouns(t *testing.T) {
 				"email":      user2.Email,
 				"pronouns":   newPronouns,
 			})
-			resp = adminSession.MakeRequest(t, req, http.StatusSeeOther)
+			adminSession.MakeRequest(t, req, http.StatusSeeOther)
 
 			user2New := unittest.AssertExistsAndLoadBean(t, &user_model.User{Name: "user2"})
 			assert.Equal(t, newPronouns, user2New.Pronouns)