From 457b6d833618b0bb69362276d852a34587e7b61f Mon Sep 17 00:00:00 2001 From: josemduarte Date: Mon, 28 Aug 2023 09:42:10 -0700 Subject: [PATCH] Fixing test after remediation --- .../structure/test/io/TestCrystallographicMetadata.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/biojava-integrationtest/src/test/java/org/biojava/nbio/structure/test/io/TestCrystallographicMetadata.java b/biojava-integrationtest/src/test/java/org/biojava/nbio/structure/test/io/TestCrystallographicMetadata.java index 58eb09fb42..054d217b2f 100644 --- a/biojava-integrationtest/src/test/java/org/biojava/nbio/structure/test/io/TestCrystallographicMetadata.java +++ b/biojava-integrationtest/src/test/java/org/biojava/nbio/structure/test/io/TestCrystallographicMetadata.java @@ -88,9 +88,9 @@ public void test1zna() throws Exception { Structure s = StructureIO.getStructure("1zna"); - // 1zna is one of the few entries that has a non-standard SG - assertTrue(s.getCrystallographicInfo().isNonStandardSg()); - assertNull(s.getCrystallographicInfo().getSpaceGroup()); + // 1zna was one of the few entries in a non-standard coordinate frame convention: but after a remediation in July 2023 it was finally fixed + assertFalse(s.getCrystallographicInfo().isNonStandardSg()); + assertNotNull(s.getCrystallographicInfo().getSpaceGroup()); }