From 0b3c04e042aa0ccf33dbcce291b837ff52db8a38 Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Tue, 5 Dec 2023 13:38:13 -0600 Subject: [PATCH] remove one failing test that does not apply to the new Rotation class --- tests/test_direct_api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_direct_api.py b/tests/test_direct_api.py index 19057f13..c84681bc 100644 --- a/tests/test_direct_api.py +++ b/tests/test_direct_api.py @@ -2536,8 +2536,6 @@ def test_rotation_parameters(self): self.assertVectorAlmostEquals(r.orientation, (10, 20, 30), 5) with self.assertRaises(TypeError): Rotation(x=10) - with self.assertRaises(ValueError): - Rotation(1,2,3,4,5) class TestShape(DirectApiTestCase): """Misc Shape tests"""