From 610f26354d43b5d2492d7f0d78163013bc738435 Mon Sep 17 00:00:00 2001 From: Mike Ingold Date: Mon, 2 Dec 2024 15:37:34 -0500 Subject: [PATCH] Reduce line length --- test/combinations.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/combinations.jl b/test/combinations.jl index ed32a0a7..2ffb1b9a 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -66,9 +66,7 @@ end end @testitem "Meshes.BezierCurve" setup=[Setup] begin - curve = BezierCurve( - [Point(t * u"m", sin(t) * u"m", 0.0u"m") for t in range(-pi, pi, length = 361)] - ) + curve = BezierCurve([Point(t, sin(t), 0) for t in range(-pi, pi, length = 361)]) function f(p::P) where {P <: Meshes.Point} ux = ustrip(p.coords.x)