Skip to content

Commit

Permalink
hopefully last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Oct 12, 2023
1 parent 99784a5 commit 28c70fb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions prody/tests/proteins/test_ciffile.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,7 @@ def testAgArgMultiModel(self):
ag = parseMMCIF(path, ag=ag)
self.assertEqual(ag.numCoordsets(), ncsets*2,
'parseMMCIF failed to append coordinate sets to given ag')
self.assertEqual(coords, ag.getCoordsets(np.arange(ncsets, ncsets*2)),
'parseMMCIF failed to have the right coordinates')
assert_equal(coords, ag.getCoordsets(np.arange(ncsets, ncsets*2)))

def testUnobsHeaderArgument(self):
"""Test outcome of valid and invalid *subset* arguments."""
Expand All @@ -225,8 +224,7 @@ def testUnobsHeaderArgument(self):
self.assertEqual(len(unobs_header),
self.biomols['num_chains_united'],
'failed to parse unobserved for correct number of chains')
self.assertEqual(unobs_header['B'][0][:39],
self.assertEqual(unobs_header['B'][0][:40],
self.biomols['unobs_B_start'],
'failed to parse unobserved alignment correctly')

unobs_header_B = unobs_header[1]

0 comments on commit 28c70fb

Please sign in to comment.