Skip to content

Commit

Permalink
fix bug in test_group
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhu2017 committed Nov 29, 2024
1 parent e7d4810 commit 4684ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def test_print_group_and_dof(self):
assert dof == dof_ref

def test_get_spg_symmetry_object(self):
spg_list = [14, 36, 62, 99, 143, 160, 182, 191, 225, 230]
ans = [32, 18, 36, 21, 16, 19, 24, 48, 62, 62]
spg_list = [14, 36, 62, 99, 143, 160, 225, 230] #182, 191,
ans = [32, 18, 36, 21, 16, 19, 62, 62] # 24, 48
for spg, num in zip(spg_list, ans):
g = Group(spg)
ss = g.get_spg_symmetry_object()
Expand Down

0 comments on commit 4684ca2

Please sign in to comment.