From 362c850b2dfea2f2c1b695b75cbd5b4bdb812987 Mon Sep 17 00:00:00 2001 From: ZachCurtis <31259055+ZachCurtis@users.noreply.github.com> Date: Fri, 19 Jul 2024 19:31:23 -0400 Subject: [PATCH] Cleanup extra assertion --- tests/roblox/datatypes/Vector2.luau | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/roblox/datatypes/Vector2.luau b/tests/roblox/datatypes/Vector2.luau index 0e50161..83f81f2 100644 --- a/tests/roblox/datatypes/Vector2.luau +++ b/tests/roblox/datatypes/Vector2.luau @@ -49,7 +49,6 @@ assert(Vector2.new(-1.9, 2.1):Ceil() == Vector2.new(-1, 3)) assert(Vector2.new(-1.1, 2.99):Floor() == Vector2.new(-2, 2)) assert(Vector2.new(1, 2):FuzzyEq(Vector2.new(1 - 1e-6, 2 + 1e-6))) -assert(Vector2.new(1, 2):Angle(Vector2.new(3, 4))) local angle = Vector2.new(1, 1):Angle(Vector2.new(-1, 1)) assert(math.abs(angle - (math.pi / 2)) < 1e-5)