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
The following two tests currently fail using the default comparison mode CompareMode.Strict. Imo CompareMode.Strict should simply compare the value as a string and presence of quotation.
test("comparing doubles") {
"3.123456789123457" shouldNotEqualJson "3.123456789123456789123456789"
}
test("comparing int and float") {
"3.2" shouldNotEqualJson "3"
}
The text was updated successfully, but these errors were encountered:
Which version of Kotest are you using
4.6.2
The following two tests currently fail using the default comparison mode
CompareMode.Strict
. ImoCompareMode.Strict
should simply compare the value as a string and presence of quotation.The text was updated successfully, but these errors were encountered: