Skip to content

Commit 6ab859e

Browse files
authored
Missing new argument for Fs in sndr_sfdr call
1 parent 552158a commit 6ab859e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_spectrum_plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_plot_string(self):
9898
"""Test proper return of plotting string."""
9999
self.bin = 13
100100
(freq, pwr) = self.gen_spectrum(3)
101-
stats = spectrum.sndr_sfdr(pwr, freq, self.nfft, leak=0, full_scale=0)
101+
stats = spectrum.sndr_sfdr(pwr, freq, 1, self.nfft, leak=0, full_scale=0)
102102
harms = spectrum.find_harmonics(
103103
pwr, freq, self.nfft, self.bin, self.arms, harms=3, leak=0
104104
)

0 commit comments

Comments
 (0)