0
votes

I am getting below error when I copy this value in my RIDE resource file in Robot Framework. Don't know what is wrong with this value.

I am able to save other 900 values in same format but not this one.

ERROR:Data Sanity Check Failed.Reset Changes?

Value I am trying to save is as below:

${MISDOB2ATTMM}  Dobson to VF Migration (Manual)

Examples of correct values:

${CHILE}    Chile 
${CI}    Cote d Ivoire (Ivory Coast) 
${CN}    China, Peoples Republic of 
${COSTARICA}    Costa recei 
1
Show another line which is ok.Psytho
few values are as below ${CHILE} Chile ${CI} Cote d Ivoire (Ivory Coast) ${CN} China, Peoples Republic of ${COSTARICA} Costa receiMonika Sapra
Add them to the question properly formatted. It's mot readable in comments.Psytho
ahh, the error does not have the details of actual failure, it looks like a high level error message. are you sure it is failed because of this assignment?Waman

1 Answers

0
votes

The error message you got was from the Text Editor (you did not mention this). This could be because there may be invisible characters in that variable definition. Maybe indentation, or even a TAB symbol.

Also, that format for variable definition is correct for the section,

*** Variables ***

But not correct for keywords or test case sections. I recommend to always use the '=' symbol for variables assignments outside the Variables section. For example:

${MISDOB2ATTMM}=    Set Variable    Dobson to VF Migration (Manual)