Skip to content

Commit 7c1e52c

Browse files
committed
fixed coverage
1 parent 6c14ab5 commit 7c1e52c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_sdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_convolve_sliding_dot_product(Q, T):
3232
@pytest.mark.parametrize("Q, T", test_data)
3333
def test_oaconvolve_sliding_dot_product(Q, T):
3434
ref_mp = naive.rolling_window_dot_product(Q, T)
35-
comp_mp = sdp._convolve_sliding_dot_product(Q, T)
35+
comp_mp = sdp._oaconvolve_sliding_dot_product(Q, T)
3636
npt.assert_almost_equal(ref_mp, comp_mp)
3737

3838

0 commit comments

Comments
 (0)