diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-08-23 01:28:41 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-08-23 01:28:41 +0300 |
commit | 8ebdc95621bc61fdf3c98cd7ae4ddca67398df23 (patch) | |
tree | 205413ed09ac001e37267889d429a363c37008f2 /tests/un/math.c | |
parent | c96c355b360f18f982459e1a866dcbf5864efdb8 (diff) | |
download | ungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.tar.gz ungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.zip |
Diffstat (limited to 'tests/un/math.c')
-rw-r--r-- | tests/un/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/un/math.c b/tests/un/math.c index eab0dcb..8b8df67 100644 --- a/tests/un/math.c +++ b/tests/un/math.c @@ -14,7 +14,7 @@ int main() { assert(fabsf(f - 1.5f) < EPSILON); d = un_m_lerpd(1.0, 2.0, 0.5); - assert(fabs(d - 1.5) < 0.000001); + assert(fabs(d - 1.5) < EPSILON); } // Test Bezier curve functions |