Skip to content

Commit ae90507

Browse files
committed
fixed coverage
1 parent 87dfcdb commit ae90507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stumpy/sdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def __call__(self, Q, T, n_threads=1, planning_flag="FFTW_ESTIMATE"):
294294
return real_arr[m - 1 : n]
295295

296296

297-
if FFTW_IS_AVAILABLE:
297+
if FFTW_IS_AVAILABLE: # pragma: no cover
298298
_pyfftw_sliding_dot_product = _PYFFTW_SLIDING_DOT_PRODUCT(max_n=2**20)
299299

300300

tests/test_sdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def get_sdp_function_names():
7474
if func_name.endswith("sliding_dot_product"):
7575
out.append(func_name)
7676

77-
if sdp.FFTW_IS_AVAILABLE:
77+
if sdp.FFTW_IS_AVAILABLE: # pragma: no cover
7878
out.append("_pyfftw_sliding_dot_product")
7979

8080
return out

0 commit comments

Comments
 (0)