Skip to content

Commit

Permalink
fix save load test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Dec 17, 2024
1 parent 197fcf9 commit be0883a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prody/tests/proteins/test_insty.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def testAllInteractionsSave(self):
"""Test for saving and loading all types of interactions."""
if prody.PY3K:
self.INTERACTIONS_ALL = InteractionsTrajectory()
self.data_all = self.INTERACTIONS_ALL.calcProteinInteractionsTrajectory(self.ATOMS)
self.data_all = np.array(self.INTERACTIONS_ALL.calcProteinInteractionsTrajectory(self.ATOMS,
stop_frame=13))

np.save('test_2k39_all.npy', np.array(self.data_all, dtype=object), allow_pickle=True)

Expand Down

0 comments on commit be0883a

Please sign in to comment.