Skip to content

Commit 068aea6

Browse files
authored
Swapped freq with fs by mistake
1 parent a6722fe commit 068aea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_spectrum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ def test_sndr_sfdr_outputs(self):
103103
},
104104
}
105105

106-
result = spectrum.sndr_sfdr(data, fs, freq, nfft, 0, full_scale=full_scale)
106+
result = spectrum.sndr_sfdr(data, freq, fs, nfft, 0, full_scale=full_scale)
107107
for key, val in exp_return.items():
108108
self.assertDictEqual(result[key], val, msg=key)

0 commit comments

Comments
 (0)