From cfed949522c76ed2c1de448642dafebaaae1946e Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Fri, 2 Feb 2024 10:11:05 -0800 Subject: [PATCH] Uninitialized VectorD is now an internal error --- modules/algebra/test/test_vector3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/algebra/test/test_vector3d.py b/modules/algebra/test/test_vector3d.py index 3a234c04f0..65145ca873 100644 --- a/modules/algebra/test/test_vector3d.py +++ b/modules/algebra/test/test_vector3d.py @@ -21,7 +21,7 @@ def test_magnitude(self): def test_uninit(self): """Check use of uninitialized Vector3D""" v = IMP.algebra.Vector3D() - self.assertRaises(IMP.UsageException, v.__getitem__, 0) + self.assertRaises(IMP.InternalException, v.__getitem__, 0) def test_from_floats(self): """Check Vector3D from floats"""