From 678fa897f5e4002b3857f219eef815086b006f81 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Tue, 15 Apr 2025 16:20:49 +0200 Subject: [PATCH] `signbit` -> `sign_bit` in `tests/core/math` --- tests/core/math/test_core_math.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/math/test_core_math.odin b/tests/core/math/test_core_math.odin index 32707c7eb..5797cb4ea 100644 --- a/tests/core/math/test_core_math.odin +++ b/tests/core/math/test_core_math.odin @@ -1012,7 +1012,7 @@ alike :: proc(t: ^testing.T, a, b: f64, loc := #caller_location) -> bool { case math.is_nan(a) && math.is_nan(b): ok = true case a == b: - ok = math.signbit(a) == math.signbit(b) + ok = math.sign_bit(a) == math.sign_bit(b) } testing.expectf(t, ok, "%.15g is not alike to %.15g", a, b, loc=loc) return ok