Skip to content

Commit d415a2c

Browse files
committed
Fixed indent error
1 parent 2238ed7 commit d415a2c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chempy/symmetry/tests/test_salcs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def test_calc_salcs_func():
5555
# square planar
5656
a, b, c, d = sympy.symbols('a b c d')
5757
salc_true1 = [1.0*a + 1.0*b + 1.0*c + 1.0*d, 0,
58-
1.0*a - 1.0*b + 1.0*c - 1.0*d, 0, 0, 0, 0, 0, 0,
59-
[1.0*a - 1.0*c, 1.0*b - 1.0*d]]
58+
1.0*a - 1.0*b + 1.0*c - 1.0*d, 0, 0, 0, 0, 0, 0,
59+
[1.0*a - 1.0*c, 1.0*b - 1.0*d]]
6060
assert (calc_salcs_func([[1, 0, 0], [0, 1, 0], [-1, 0, 0], [0, -1, 0]],
6161
'd4h', [a, b, c, d], mode='vector') == salc_true1)
6262

0 commit comments

Comments
 (0)