Skip to content

Commit

Permalink
add extra LBD domain to second place
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 5, 2023
1 parent 3454c67 commit 38a0e5a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions prody/tests/database/test_pfam.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def testUniprotAccMulti(self):
'searchPfam failed to return a dict instance')

self.assertEqual(sorted(list(a.keys())),
['PF00060', 'PF01094', 'PF10613'],
['PF00060', 'PF00497', 'PF01094', 'PF10613'],
'searchPfam failed to return the right domain family IDs')

def testPdbIdChMulti(self):
Expand All @@ -49,9 +49,8 @@ def testPdbIdChMulti(self):
self.assertIsInstance(a, dict,
'searchPfam failed to return a dict instance')

self.assertEqual(sorted(list(a.keys())),
['PF00060', 'PF01094', 'PF10613'],
'searchPfam failed to return the right domain family IDs for AMPAR')
self.assertEqual(sorted(list(a.keys())), ['PF00060', 'PF00497', 'PF01094', 'PF10613'],
'searchPfam failed to return the right domain family IDs for AMPAR')

def testPdbIdChSingle(self):
"""Test the outcome of a simple search scenario using a PDB ID
Expand Down

0 comments on commit 38a0e5a

Please sign in to comment.