Skip to content

Commit 58f6677

Browse files
committed
forgot to update a keyword arg
1 parent 94727bc commit 58f6677

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pynumdiff/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def identity(x, dt): return x, 0 # should come back the same
7373
x = np.arange(100)
7474
kernel = utility.gaussian_kernel(9)
7575

76-
x_hat, dxdt_hat = utility.slide_function(identity, x, 0.1, kernel, step_size=2)
76+
x_hat, dxdt_hat = utility.slide_function(identity, x, 0.1, kernel, stride=2)
7777

7878
assert np.allclose(x, x_hat)
7979

0 commit comments

Comments
 (0)