Why is the following code returning TRUE when it is obviously not TRUE?
ExpressionParser parser = new SpelExpressionParser();
Integer s = new Integer(132);
EvaluationContext context = new StandardEvaluationContext();
context.setVariable("rpaCount", s);
Expression exp = parser.parseExpression("#rpaCount>1000");
Boolean truth = (Boolean)exp.getValue();
System.out.println(truth); // returning TRUE ....HOW is 132 > 1000?