Skip to content

Commit

Permalink
Fixing test after remediation
Browse files Browse the repository at this point in the history
  • Loading branch information
josemduarte committed Aug 28, 2023
1 parent 4796663 commit 457b6d8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}


Expand Down

0 comments on commit 457b6d8

Please sign in to comment.