Skip to content

Commit

Permalink
实现个人信息编辑接口
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiejun committed Sep 28, 2023
1 parent ffeb03c commit 532204f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/integration/user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,13 @@ func TestUserHandler_e2e_SignUp(t *testing.T) {
},
after: func(t *testing.T) {
var u dao.User
db.Where("email = ?", "[email protected]").First(&u)
d := db.Where("email = ?", "[email protected]").First(&u)
assert.NotEmpty(t, u.Id)
assert.NotEmpty(t, u.Email)
assert.NotEmpty(t, u.Password)
assert.NotEmpty(t, u.CreateTime)
assert.NotEmpty(t, u.UpdateTime)
//d.Delete(&u)
d.Delete(&u)
},
body: `
{
Expand Down

0 comments on commit 532204f

Please sign in to comment.