We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c14ab5 commit 7c1e52cCopy full SHA for 7c1e52c
tests/test_sdp.py
@@ -32,7 +32,7 @@ def test_convolve_sliding_dot_product(Q, T):
32
@pytest.mark.parametrize("Q, T", test_data)
33
def test_oaconvolve_sliding_dot_product(Q, T):
34
ref_mp = naive.rolling_window_dot_product(Q, T)
35
- comp_mp = sdp._convolve_sliding_dot_product(Q, T)
+ comp_mp = sdp._oaconvolve_sliding_dot_product(Q, T)
36
npt.assert_almost_equal(ref_mp, comp_mp)
37
38
0 commit comments