-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failing to compare big numbers #107
Comments
I would like to try to work on this issue. |
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 25, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 25, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 25, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 25, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 25, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 26, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
Apr 26, 2021
whitecat315
added a commit
to whitecat315/JSONassert
that referenced
this issue
May 20, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This assertions should fail, but they don't:
JSONAssert.assertEquals(
"{ \"value\": 1234567890.1234567890123456 }",
"{ \"value\": 1234567890.1234567000000000 }",
true
);
JSONAssert.assertEquals(
"{ "value": 12345678901234567890123456 }",
"{ "value": 12345678901234567800000000 }",
true
);
The text was updated successfully, but these errors were encountered: