Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHelfer committed Jan 26, 2024
1 parent 44ebca2 commit 6bec4ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_interpolations.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ def test_interpolation_on_grid():
for centering in [True, False]:
tol = 1e-10
channels = 25
interpolation = interp(6, 3, centering,channels)
interpolation = interp(
num_points=6,
max_degree=3,
num_channels=1,
learnable=False,
align_grids_with_lower_dim_values=centering,
)
length = 10
dx = 0.01

Expand Down

0 comments on commit 6bec4ca

Please sign in to comment.