Fix false value range condition in NULLABLE_AXIS_WITHOUT_2
As the name of this constraint and the corresponding error message says, the value should be in range of [-1,1]
. However, it was defined as intValue >= -1 && intValue <= 2
in the original code.