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