aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/complex/log.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/math/complex/log.zig')
-rw-r--r--lib/std/math/complex/log.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math/complex/log.zig b/lib/std/math/complex/log.zig
index c725888102..65859c2dce 100644
--- a/lib/std/math/complex/log.zig
+++ b/lib/std/math/complex/log.zig
@@ -15,7 +15,7 @@ pub fn log(z: anytype) Complex(@TypeOf(z.re, z.im)) {
const epsilon = 0.0001;
-test "complex.clog" {
+test log {
const a = Complex(f32).init(5, 3);
const c = log(a);