File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def test_consistency_solid_harmonics():
29
29
compute_solid_harmonics_from_array = jl .eval ("compute_solid_harmonics_from_array" )
30
30
julia_results = compute_solid_harmonics_from_array (xyz , L_MAX )
31
31
32
- python_results = sphericart .SphericalHarmonics (L_MAX , normalized = False ).compute (xyz )
32
+ python_results = sphericart .SolidHarmonics (L_MAX ).compute (xyz )
33
33
assert np .allclose (julia_results , python_results )
34
34
35
35
@@ -55,5 +55,5 @@ def test_consistency_spherical_harmonics():
55
55
compute_solid_harmonics_from_array = jl .eval ("compute_solid_harmonics_from_array" )
56
56
julia_results = compute_solid_harmonics_from_array (xyz , L_MAX )
57
57
58
- python_results = sphericart .SphericalHarmonics (L_MAX , normalized = True ).compute (xyz )
58
+ python_results = sphericart .SphericalHarmonics (L_MAX ).compute (xyz )
59
59
assert np .allclose (julia_results , python_results )
You can’t perform that action at this time.
0 commit comments