Skip to content

Commit 1d41923

Browse files
committed
update custom ops test for new fourier wigner variable ordering
1 parent c764a98 commit 1d41923

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_lifting_transforms.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_custom_forward_from_s2(
2828
# GENERATE MOCK SIGNAL
2929
flmn = flmn_generator(L=L, N=N)
3030
DW = c.fourier_wigner_kernel(L)
31-
f = fw.inverse_transform(flmn, DW, L, N, False, sampling)
31+
f = fw.inverse_transform(flmn, L, N, DW, False, sampling)
3232
spins = -np.arange(-N + 1, N)
3333

3434
# FUNCTION SWITCH
@@ -77,7 +77,7 @@ def test_custom_forward_from_so3(
7777
# GENERATE MOCK SIGNAL
7878
flmn = flmn_generator(L=L, N=N)
7979
DW = c.fourier_wigner_kernel(L)
80-
f = fw.inverse_transform(flmn, DW, L, N, False, sampling)
80+
f = fw.inverse_transform(flmn, L, N, DW, False, sampling)
8181
spins = -np.arange(-N + 1, N)
8282

8383
# FUNCTION SWITCH
@@ -121,7 +121,7 @@ def test_custom_inverse_to_s2(
121121
# GENERATE MOCK SIGNAL
122122
flmn = flmn_generator(L=L, N=N)
123123
DW = c.fourier_wigner_kernel(L)
124-
f = fw.inverse_transform(flmn, DW, L, N, False, sampling)
124+
f = fw.inverse_transform(flmn, L, N, DW, False, sampling)
125125
spins = -np.arange(-N + 1, N)
126126

127127
# FUNCTION SWITCH

0 commit comments

Comments
 (0)