Skip to content

Commit c63aba5

Browse files
committed
Add a missing smoother test
1 parent 4d6f65e commit c63aba5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

_delphi_utils_python/tests/test_smooth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ def test_impute(self):
171171
signal = np.arange(20)
172172
smoother = Smoother(smoother_name="savgol", boundary_method="identity", window_length=30)
173173
smoothed_signal = smoother.smooth(signal)
174+
assert np.allclose(signal, smoothed_signal)
174175

175176
# test the boundary methods
176177
signal = np.arange(20)

0 commit comments

Comments
 (0)