From 2b222d8e2a939414faf53cc819c8239ba7e11de1 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 25 Sep 2023 14:22:39 -0500 Subject: [PATCH] Format another test file --- tests/roblox/datatypes/CFrame.luau | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/roblox/datatypes/CFrame.luau b/tests/roblox/datatypes/CFrame.luau index ba4979c..b40d97a 100644 --- a/tests/roblox/datatypes/CFrame.luau +++ b/tests/roblox/datatypes/CFrame.luau @@ -127,15 +127,17 @@ assertEq( -- Angles +-- stylua: ignore start assertEq( - CFrame.Angles(math.pi/2, math.pi/4, math.pi/4), + CFrame.Angles(math.pi / 2, math.pi / 4, math.pi / 4), CFrame.new( - 0, 0, 0, - 0.49999997, -0.49999997, 0.707106769, - 0.49999994, -0.5, -0.707106769, + 0, 0, 0, + 0.49999997, -0.49999997, 0.707106769, + 0.49999994, -0.5, -0.707106769, 0.707106769, 0.707106769, 0 ) ) +-- stylua: ignore end -- TODO: More methods