Skip to content

Commit 0c10a2e

Browse files
committed
Fix test failure due to PDB change
4LNC was updated to remove the X-Ray experimental method. This switches the test to 6F2Q, which uses both Neutron & Xray.
1 parent c1c3c30 commit 0c10a2e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

biojava-structure/src/test/java/org/biojava/nbio/structure/TestExperimentalTechniques.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public class TestExperimentalTechniques {
3232

3333
@Test
34-
public void test4LNC() throws IOException, StructureException {
34+
public void test6F2Q() throws IOException, StructureException {
3535

3636
// a multiple experimental techniques PDB entry (X-RAY + NEUTRON DIFFRACTION)
3737

@@ -40,9 +40,9 @@ public void test4LNC() throws IOException, StructureException {
4040
StructureIO.setAtomCache(cache);
4141

4242
cache.setUseMmCif(false);
43-
Structure sPdb = StructureIO.getStructure("4LNC");
43+
Structure sPdb = StructureIO.getStructure("6F2Q");
4444
cache.setUseMmCif(true);
45-
Structure sCif = StructureIO.getStructure("4LNC");
45+
Structure sCif = StructureIO.getStructure("6F2Q");
4646

4747
comparePdbToCif(sPdb, sCif);
4848

0 commit comments

Comments
 (0)