From 9565259dc1c272855cd42a0538a172c7d9c4d09b Mon Sep 17 00:00:00 2001 From: phoenix Date: Mon, 25 May 2026 22:26:38 -0400 Subject: [PATCH] Test fix --- tx0/user/user_profile_test.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tx0/user/user_profile_test.go b/tx0/user/user_profile_test.go index c6fbc1d..69df08e 100644 --- a/tx0/user/user_profile_test.go +++ b/tx0/user/user_profile_test.go @@ -7,10 +7,7 @@ import ( ) func TestInitUserProfile(t *testing.T) { - usr := User{} - usr.Username = "Bob" - usr.PhoneNumber = "+12224572351" - usr.Password = "TheNight!" + usr := User{Username: "Bob", PhoneNumber: "+12224572351", Password: "TheNight!"} profile, done := InitUserProfile(&usr)