We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22febb commit 5ee9bf5Copy full SHA for 5ee9bf5
tests/test_edc.py
@@ -112,8 +112,11 @@ def test_multidim_edc(edc_function):
112
"""
113
rir = pf.signals.files.room_impulse_response()
114
rir_oct = pf.dsp.filter.fractional_octave_bands(rir, 1)
115
+ shape = rir_oct.time.shape
116
edc = edc_function(rir_oct)
117
118
npt.assert_array_equal(
119
np.isfinite(edc.time[..., :int(rir.sampling_rate*0.4)]), True)
120
121
+ assert shape == edc.time.shape
122
+
0 commit comments