Skip to content
Snippets Groups Projects
Commit 2c245cc4 authored by Axel Rennoch's avatar Axel Rennoch
Browse files

small correction of error condition in TC_CSE_GMG_BV_010

parent da7392e6
No related branches found
No related tags found
1 merge request!25Ae fixes
......@@ -4690,7 +4690,7 @@ module OneM2M_Testcases {
if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.any_1[0].Group_optional.memberTypeValidated)){
setverdict(fail, testcasename(), ": Error, memberTypeValidated attribute not provided");
} else {
if(v_response.primitive.responsePrimitive.primitiveContent.any_1[0].Group_optional.memberTypeValidated == false){
if(v_response.primitive.responsePrimitive.primitiveContent.any_1[0].Group_optional.memberTypeValidated != false){
setverdict(fail, testcasename(), ": Error, memberTypeValidated attribute not correct");
}
}
......
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