Skip to content

Commit

Permalink
test: dummy value
Browse files Browse the repository at this point in the history
  • Loading branch information
cho4036 committed Apr 7, 2023
1 parent 9e1ac98 commit 1476d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/usecase/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func (u *UserUsecase) GetByAccountId(ctx context.Context, accountId string, orga
func (u *UserUsecase) UpdateByAccountId(ctx context.Context, accountId string, user *domain.User) (*domain.User, error) {
userInfo, ok := request.UserFrom(ctx)
if !ok {
return nil, fmt.Errorf("user in the context is empty")
return nil, fmt.Errorf("user in the context is empty")
}
token, ok := request.TokenFrom(ctx)
if !ok {
Expand Down

0 comments on commit 1476d44

Please sign in to comment.