Skip to content

Commit 469d773

Browse files
committed
Remove test for unintended error from UnitQuaternion constructor.
1 parent ca1a2bd commit 469d773

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/test_quaternion.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,6 @@ def test_constructor(self):
157157
with self.assertRaises(ValueError):
158158
UnitQuaternion(R, check=True)
159159

160-
# no check, so try to interpret as a quaternion, but shape is wrong
161-
with self.assertRaises(ValueError):
162-
UnitQuaternion(R, check=False)
163-
164160
# wrong shape to be anything
165161
R = np.zeros((5, 5))
166162
with self.assertRaises(ValueError):

0 commit comments

Comments
 (0)