From e229d71cb1121e2f2480241f64d1ff2a00af3fb7 Mon Sep 17 00:00:00 2001 From: James Krieger Date: Fri, 7 Jun 2024 16:27:48 +0200 Subject: [PATCH] remove bacterial PF00497 from tests --- prody/tests/database/test_pfam.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prody/tests/database/test_pfam.py b/prody/tests/database/test_pfam.py index f041cb76b..385d8b372 100644 --- a/prody/tests/database/test_pfam.py +++ b/prody/tests/database/test_pfam.py @@ -34,7 +34,7 @@ def testUniprotAccMulti(self): 'searchPfam failed to return a dict instance') self.assertEqual(sorted(list(a.keys())), - ['PF00060', 'PF00497', 'PF01094', 'PF10613'], + ['PF00060', 'PF01094', 'PF10613'], 'searchPfam failed to return the right domain family IDs') def testPdbIdChMulti(self): @@ -46,7 +46,7 @@ def testPdbIdChMulti(self): self.assertIsInstance(a, dict, 'searchPfam failed to return a dict instance') - self.assertEqual(sorted(list(a.keys())), ['PF00060', 'PF00497', 'PF01094', 'PF10613'], + self.assertEqual(sorted(list(a.keys())), ['PF00060', 'PF01094', 'PF10613'], 'searchPfam failed to return the right domain family IDs for AMPAR') def testPdbIdChSingle(self):