Skip to content

Commit

Permalink
[tests]: Changind wrong unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hentt30 committed Jun 6, 2021
1 parent 8d18d1c commit 7fcaf9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/utils/test_initial_cut_guess_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

def test_3d_method():
"""
Test the method of guess for 2d compunds
Test the method of guess for 3d compunds
"""
cut_guess = CutInitialGuess()
guess_1 = cut_guess.guess(0, "3d")
assert np.isclose(guess_1, 0.15)
guess_1 = cut_guess.guess(1, "3d")
assert np.isclose(guess_1, 0.99)
assert np.isclose(guess_1, 0.84 * 1.88973 + 0.15)
guess_1 = cut_guess.guess(2, "3d")
assert np.isclose(guess_1, 1.83)
assert np.isclose(guess_1, 0.84 * 1.88973 * 2 + 0.15)

0 comments on commit 7fcaf9c

Please sign in to comment.