Skip to content

Commit

Permalink
fix-testcase TestPDUSessionReleaseRequest (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: ycchen <[email protected]>
  • Loading branch information
chen042531 and ycchen authored Mar 21, 2022
1 parent 72c023f commit 816b57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions producer/smpolicy.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ func HandleDeleteSmPolicyContextRequest(request *http_wrapper.Request) *http_wra
logger.SMpolicylog.Infof("Handle DeleteSmPolicyContext")

// step 2: retrieve request
smPolicyID := request.Params["smPolicyID"]
smPolicyID := request.Params["smPolicyId"]

// step 3: handle the message
problemDetails := deleteSmPolicyContextProcedure(smPolicyID)
Expand Down Expand Up @@ -276,7 +276,7 @@ func HandleGetSmPolicyContextRequest(request *http_wrapper.Request) *http_wrappe
logger.SMpolicylog.Infof("Handle GetSmPolicyContext")

// step 2: retrieve request
smPolicyID := request.Params["smPolicyID"]
smPolicyID := request.Params["smPolicyId"]
// step 3: handle the message
response, problemDetails := getSmPolicyContextProcedure(smPolicyID)

Expand Down

0 comments on commit 816b57d

Please sign in to comment.