relaxed tolerance not needed

This commit is contained in:
Martin Diehl 2020-04-08 20:23:05 +02:00
parent 59e0041fd7
commit 2a063b3bb5
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class TestRotation:
m = rot.asHomochoric()
o = Rotation.fromCubochoric(rot.asCubochoric()).asHomochoric()
print(m,o,rot.asQuaternion())
assert np.allclose(m,o,atol=atol*1e2)
assert np.allclose(m,o,atol=atol)
def test_Quaternion(self,default):
for rot in default: