Skip to content

Commit

Permalink
Fixes a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
saltiyazan committed Nov 29, 2023
1 parent 8e55d4e commit 8ea3eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configapi/api_sub_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ func GetSubscribers(c *gin.Context) {
for _, amData := range amDataList {

tmp := configmodels.SubsListIE{
UeId: amData["ueID"].(string),
UeId: amData["ueId"].(string),
}

if servingPlmnId, plmnIdExists := amData["servingPlmnId"]; plmnIdExists {
Expand Down
2 changes: 1 addition & 1 deletion proto/server/configEvtHandler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ func Test_handleNetworkSlicePost_alreadyExists(t *testing.T) {
}
}

func Test_handleSubscriberPost(* testing.T) {
func Test_handleSubscriberPost(t *testing.T) {
imsi := "1234"
factory.WebUIConfig.Configuration.Mode5G = true
configMsg := configmodels.ConfigMessage{
Expand Down

0 comments on commit 8ea3eff

Please sign in to comment.