Skip to content

Commit

Permalink
fix: error strings should not be capitalized
Browse files Browse the repository at this point in the history
  • Loading branch information
pf-lin committed Aug 12, 2024
1 parent e9e0de4 commit 548c018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/sbi/consumer/chf_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (s *nchfService) SendConvergedChargingRequest(
}

if smContext.SelectedCHFProfile.NfServices == nil {
errMsg := "No CHF found"
errMsg := "no CHF found"
return nil, openapi.ProblemDetailsDataNotFound(errMsg), fmt.Errorf(errMsg)
}

Expand All @@ -133,7 +133,7 @@ func (s *nchfService) SendConvergedChargingRequest(
}
}
if client == nil {
errMsg := "No CONVERGEDCHARGING-CHF found"
errMsg := "no CONVERGEDCHARGING-CHF found"
return nil, openapi.ProblemDetailsDataNotFound(errMsg), fmt.Errorf(errMsg)
}

Expand Down

0 comments on commit 548c018

Please sign in to comment.