From 2816a23c0f57cf6984004a770d1b3f5b9378c83c Mon Sep 17 00:00:00 2001 From: Diego Prada-Gracia Date: Wed, 24 Aug 2022 20:21:56 -0500 Subject: [PATCH] Typo correction: raidus->radius --- openpocket/tests/test_alphaspheres.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openpocket/tests/test_alphaspheres.py b/openpocket/tests/test_alphaspheres.py index 321c907..ec88bb0 100644 --- a/openpocket/tests/test_alphaspheres.py +++ b/openpocket/tests/test_alphaspheres.py @@ -49,9 +49,9 @@ def test_alphaspheres_original_points(): assert alphaspheres.n_alpha_spheres == 3 - remaining_no_big_raidus = ([1.92028644, 1.6583124 , 1.6583124 ]) + remaining_no_big_radius = ([1.92028644, 1.6583124 , 1.6583124 ]) - assert np.allclose(remaining_no_big_raidus, alphaspheres.radii) + assert np.allclose(remaining_no_big_radius, alphaspheres.radii) remaining_no_big_centers = ([[-0.25, -0.75, 1.75], [ 0.5 , 1.5 , -0.5 ], @@ -63,9 +63,9 @@ def test_alphaspheres_original_points(): assert alphaspheres.n_alpha_spheres == 1 - remaining_no_small_raidus = ([1.92028644]) + remaining_no_small_radius = ([1.92028644]) - assert np.allclose(remaining_no_small_raidus, alphaspheres.radii) + assert np.allclose(remaining_no_small_radius, alphaspheres.radii) remaining_no_small_centers= ([[-0.25, -0.75, 1.75]])