diff options
Diffstat (limited to 'lib/std/math/isnormal.zig')
| -rw-r--r-- | lib/std/math/isnormal.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math/isnormal.zig b/lib/std/math/isnormal.zig index 38b459b54e..1ecaf39330 100644 --- a/lib/std/math/isnormal.zig +++ b/lib/std/math/isnormal.zig @@ -19,7 +19,7 @@ pub fn isNormal(x: anytype) bool { return value & remove_sign >= (increment_exp << 1); } -test "math.isNormal" { +test isNormal { // TODO add `c_longdouble' when math.inf(T) supports it inline for ([_]type{ f16, f32, f64, f80, f128 }) |T| { const TBits = std.meta.Int(.unsigned, @bitSizeOf(T)); |
