Skip to content

Commit

Permalink
Typo correction: raidus->radius
Browse files Browse the repository at this point in the history
  • Loading branch information
dprada committed Aug 25, 2022
1 parent 43e6ceb commit 2816a23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openpocket/tests/test_alphaspheres.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
Expand All @@ -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]])

Expand Down

0 comments on commit 2816a23

Please sign in to comment.