Skip to content

Commit

Permalink
Fix function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Oct 31, 2024
1 parent ae31d1c commit ba880c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/_utils/test_ghosts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sire as sr

from somd2._utils._ghosts import _boresch
from somd2._utils._ghosts import boresch


def test_hexane_to_propane():
Expand All @@ -17,7 +17,7 @@ def test_hexane_to_propane():
dihedrals = mols[0].property("dihedral1")

# Apply the ghost atom modifications.
new_mols = _boresch(mols)
new_mols = boresch(mols)

# Get the new angles and dihedrals.
new_angles = new_mols[0].property("angle1")
Expand Down Expand Up @@ -78,7 +78,7 @@ def test_toluene_to_pyridine():
dihedrals = mols[0].property("dihedral1")

# Apply the ghost atom modifications.
new_mols = _boresch(mols)
new_mols = boresch(mols)

# Get the new angles and dihedrals.
new_angles = new_mols[0].property("angle1")
Expand Down Expand Up @@ -170,7 +170,7 @@ def test_acetone_to_propenol():
dihedrals1 = mols[0].property("dihedral1")

# Apply the ghost atom modifications.
new_mols = _boresch(mols)
new_mols = boresch(mols)

# Get the new angles and dihedrals.
new_angles0 = new_mols[0].property("angle0")
Expand Down

0 comments on commit ba880c3

Please sign in to comment.