You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Postman has the behaviour to cut number ending with null.
It changes 12.50 to 12.5.
Since the original value is 12.50, Idaithalam test fails because the Postman collection stored 12.5 instead.
Idaithalam shall check if it is a number and compare number values instead of string compare.
The text was updated successfully, but these errors were encountered:
No.
The problem is here that Idaithalam is making a string comparison instead of a value comparison.
Usually you just want to have the right values.
Only in certain cases you need exact format.
However, the user should have the choice.
I suggest to have a configuration option for:
a) String comparison (like it is now).
b) Value comparison (would solve that problem)
c) Regular expression (would be #163)
d) Format comparsion (if it is integer, string, date or float).
e) Check only if field exists, no value checking.
Postman has the behaviour to cut number ending with null.
It changes 12.50 to 12.5.
Since the original value is 12.50, Idaithalam test fails because the Postman collection stored 12.5 instead.
Idaithalam shall check if it is a number and compare number values instead of string compare.
The text was updated successfully, but these errors were encountered: