[NFC/Unit Test] - Help avoid problems when using assertApproxEquals with integers instead of fractions #20089
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This makes your test fail if you pass integers into assertApproxEquals with a threshold of 1. It's come up twice that I know of. It gives you a helpful message to use a bigger number, such as 2, or 5.
Before
Kinda
After
Sorta
Technical Details
Integers-first is how humans think, not fractions as do Alpha-Centaurans, or complex numbers as do humpback whales (source: Star Trek IV). But the approxEquals function is a fractions-first thinking function, where a threshold of 1 when applied to integers means they need to be identical.
Comments
Is test
@seamuslee001