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