From 853f227cc05bfb09753622beb6b8ee03257c3e0f Mon Sep 17 00:00:00 2001 From: James Krieger Date: Sun, 5 Nov 2023 11:48:33 +0100 Subject: [PATCH] fix test num atoms with altloc None --- prody/tests/proteins/test_pdbfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prody/tests/proteins/test_pdbfile.py b/prody/tests/proteins/test_pdbfile.py index 0a4bf2f5e..a40e42b70 100644 --- a/prody/tests/proteins/test_pdbfile.py +++ b/prody/tests/proteins/test_pdbfile.py @@ -219,7 +219,7 @@ def testAltlocNoneToMultiCoordets(self): path = pathDatafile(self.altlocs['file']) ag = parsePDB(path, altloc=None) - self.assertEqual(ag.numAtoms(), self.altlocs['atoms_altloc'], + self.assertEqual(ag.numAtoms(), self.altlocs['atoms_single'], 'parsePDB failed to parse correct number of atoms with altloc None') self.assertEqual(ag.numCoordsets(), self.altlocs['num_altlocs'], 'parsePDB failed to parse correct number of coordsets (2) with altloc None')