Commit 1c603b1a authored by John Chodera (MSKCC)'s avatar John Chodera (MSKCC)
Browse files

Fix uuid issue with TestForceField.

parent 9dd7fbd4
......@@ -258,8 +258,8 @@ class TestForceField(unittest.TestCase):
NOTE: We presume we have already loaded the force definitions into ForceField.
"""
# Generate a unique prefix name for generating parameters.
from uuid import UUID
template_name = UUID()
from uuid import uuid4
template_name = uuid4()
# Generate an atom type for each atom.
for atom in residue.atoms():
parameters = {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment