aboutsummaryrefslogtreecommitdiff
path: root/std/special/compiler_rt/floatuntitf_test.zig
diff options
context:
space:
mode:
Diffstat (limited to 'std/special/compiler_rt/floatuntitf_test.zig')
-rw-r--r--std/special/compiler_rt/floatuntitf_test.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/special/compiler_rt/floatuntitf_test.zig b/std/special/compiler_rt/floatuntitf_test.zig
index 8e67fee108..09f3eabb3e 100644
--- a/std/special/compiler_rt/floatuntitf_test.zig
+++ b/std/special/compiler_rt/floatuntitf_test.zig
@@ -1,9 +1,9 @@
const __floatuntitf = @import("floatuntitf.zig").__floatuntitf;
-const assert = @import("std").debug.assert;
+const testing = @import("std").testing;
fn test__floatuntitf(a: u128, expected: f128) void {
const x = __floatuntitf(a);
- assert(x == expected);
+ testing.expect(x == expected);
}
test "floatuntitf" {