Getting an expression error when running Rest API via Postman

The expression i passed in the camunda modeler is:
#(teamName ==‘India’}

The variables i passed for this expression in the Postman is:
{“variables”:
{“teamName”: {“value”: “India”}
}
}

Facing the below issue:

“Cannot complete task b6cd0831-6a66-11ea-ab15-621a1d4f98c2: condition expression returns non-Boolean: result has class java.lang.String and not java.lang.Boolean”

You’ve got a typo in your expression, you’ve used the wrong opening brace.
#(teamName ==‘India’}
Should be
#{teamName ==‘India’}

Thank you so much man. The issue is solved .Its working fine.