From f0351e403a9b307ed7cba614db3a22df5dac8213 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Thu, 7 Jan 2021 11:01:15 -0500 Subject: [PATCH] removed duplicate test --- python/tests/test_Rotation.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/python/tests/test_Rotation.py b/python/tests/test_Rotation.py index 1067e8a87..707bc0210 100644 --- a/python/tests/test_Rotation.py +++ b/python/tests/test_Rotation.py @@ -825,14 +825,6 @@ class TestRotation: print(f'append 3x {shape} --> {s.shape}') assert np.logical_and(s[0,...] == r[0,...], s[-1,...] == p[-1,...]).all() - @pytest.mark.parametrize('shape',[None,1,(1,),(4,2),(3,3,2)]) - def test_append_list(self,shape): - r = Rotation.from_random(shape=shape) - p = Rotation.from_random(shape=shape) - s = r.append([r,p]) - print(f'append 3x {shape} --> {s.shape}') - assert s[0,...] == r[0,...] and s[-1,...] == p[-1,...] - @pytest.mark.parametrize('quat,standardized',[ ([-1,0,0,0],[1,0,0,0]), ([-0.5,-0.5,-0.5,-0.5],[0.5,0.5,0.5,0.5]),