Skip to content
Snippets Groups Projects
Commit eeedfdd7 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix conversion from unichar to charstring

parent 500df6a6
No related branches found
No related tags found
1 merge request!63Merge Release4-onwards into Release4
......@@ -18351,7 +18351,7 @@ module OneM2M_Testcases_CSE_Release_4 {
var universal charstring v_chr1 := any2unistr(v_createRequest);
var NiddUplinkDataNotification v_niddUplinkDataNotification :=
{
data := v_chr1
data := oct2char(unichar2oct(v_chr1))
};
var RequestBodyT8 niddUplink :=
{
......@@ -18442,7 +18442,7 @@ module OneM2M_Testcases_CSE_Release_4 {
var universal charstring v_chr1 := any2unistr(v_createRequest);
var NiddUplinkDataNotification v_niddUplinkDataNotification :=
{
data := v_chr1
data := oct2char(unichar2oct(v_chr1))
};
var RequestBodyT8 niddUplink :=
{
......@@ -18540,7 +18540,7 @@ module OneM2M_Testcases_CSE_Release_4 {
var universal charstring v_chr1 := any2unistr(v_createRequest);
var NiddUplinkDataNotification v_niddUplinkDataNotification :=
{
data := v_chr1
data := oct2char(unichar2oct(v_chr1))
};
var RequestBodyT8 niddUplink :=
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment