Skip to content

Commit 2e15b61

Browse files
committed
Better name
1 parent f9682fa commit 2e15b61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestParseMmCIFLigands.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ public void testLigandConnections()throws IOException, StructureException {
4242
Structure sCif = StructureIO.getStructure("4HHB");
4343

4444
//Verify that we have all HEM atoms from the CIF file.
45-
assertEquals( HEM_COUNT_4HHB, countUniqueAtomsInLigandGroups(sCif) );
45+
assertEquals( HEM_COUNT_4HHB, countBondedAtomsInLigandGroups(sCif) );
4646

4747
}
4848

49-
private int countUniqueAtomsInLigandGroups(Structure s){
49+
private int countBondedAtomsInLigandGroups(Structure s){
5050

5151
int count = 0;
5252

@@ -86,7 +86,7 @@ public void testMultipleConformations()throws IOException, StructureException {
8686

8787
//Verify that we have all atoms from all conformations of the ligands
8888

89-
assertEquals(ATOM_COUNT_3UCB, countUniqueAtomsInLigandGroups(sCif));
89+
assertEquals(ATOM_COUNT_3UCB, countBondedAtomsInLigandGroups(sCif));
9090
}
9191

9292
}

0 commit comments

Comments
 (0)