Skip to content

Commit

Permalink
Fix sign error on rotate method caused by change in this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlis committed Feb 27, 2024
1 parent c4cc1b0 commit 70f8462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_ccore.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ def test_Seismogram():
assert all(np.isclose(seis_copy.data[:, 3], [0, 0, 1]))
seis.rotate_to_standard()

seis.rotate(np.pi / 4)
seis.rotate(-np.pi / 4)
seis.transform(a)
assert (
np.isclose(
Expand Down

0 comments on commit 70f8462

Please sign in to comment.