Updated test
Go CI / Test and Lint (push) Failing after 6s
Go Release / build-and-release (pull_request) Successful in 6s
Go CI / Test and Lint (pull_request) Failing after 6s

This commit is contained in:
2026-05-25 22:42:40 -04:00
parent 587f9a05af
commit 97591d99b5
+2 -2
View File
@@ -9,9 +9,9 @@ import (
func TestInitUserProfile(t *testing.T) {
usr := User{Username: "Bob", PhoneNumber: "+12224572351", Password: "TheNight!"}
profile, done := InitUserProfile(&usr)
profile, err := InitUserProfile(&usr)
assert.Equal(t, done, true, "Error")
assert.NoError(t, err, "Error %v", err)
assert.NotEmpty(t, profile, "UserProfile is empty")
assert.Empty(t, profile.Usr.Password, "Password should be empty")