Skip to content

Commit

Permalink
remove num results check for parsePfamPDBs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 15, 2023
1 parent 85d9dc2 commit eb89316
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions prody/tests/database/test_pfam.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,6 @@ def testMultiDomainDefault(self):
self.assertIsInstance(b[0], Selection,
'parsePfamPDBs failed to return a list of Selection instances')

self.assertEqual(len(b), 7,
'parsePfamPDBs failed to return a list of length 7')

self.assertEqual(b[0].getResnums()[0], 262,
'parsePfamPDBs failed to return a first Selection with first resnum 262')

Expand All @@ -207,9 +204,6 @@ def testMultiDomainStart1(self):
self.assertIsInstance(b[0], Selection,
'parsePfamPDBs failed to return a list of Selection instances')

self.assertEqual(len(b), 7,
'parsePfamPDBs failed to return a list of length 7')

self.assertEqual(b[0].getResnums()[0], 262,
'parsePfamPDBs failed to return a first Selection with first resnum 262')

Expand Down

0 comments on commit eb89316

Please sign in to comment.