aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/complex/arg.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/math/complex/arg.zig')
-rw-r--r--lib/std/math/complex/arg.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math/complex/arg.zig b/lib/std/math/complex/arg.zig
index bf5e0eff42..ac69276d96 100644
--- a/lib/std/math/complex/arg.zig
+++ b/lib/std/math/complex/arg.zig
@@ -11,7 +11,7 @@ pub fn arg(z: anytype) @TypeOf(z.re, z.im) {
const epsilon = 0.0001;
-test "complex.carg" {
+test arg {
const a = Complex(f32).init(5, 3);
const c = arg(a);
try testing.expect(math.approxEqAbs(f32, c, 0.540420, epsilon));