summaryrefslogtreecommitdiff
path: root/gr-fft/python/fft
diff options
context:
space:
mode:
authormormj <mormjb@gmail.com>2020-10-30 10:46:31 -0400
committerMarcus Müller <marcus@hostalia.de>2020-10-30 17:52:53 +0100
commit12192ee7d58de95ddca35a3e93bfc172bdb5c820 (patch)
tree14414e1454b2164aad0e2a7515e24d1fb56eddf1 /gr-fft/python/fft
parentbabc17e616d01c09d281a59fbbf780961b372b39 (diff)
qa: remove xml file parameter causing deprecation warnings
Diffstat (limited to 'gr-fft/python/fft')
-rw-r--r--gr-fft/python/fft/qa_fft.py2
-rw-r--r--gr-fft/python/fft/qa_goertzel.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gr-fft/python/fft/qa_fft.py b/gr-fft/python/fft/qa_fft.py
index 1e762b05be..36af441fd2 100644
--- a/gr-fft/python/fft/qa_fft.py
+++ b/gr-fft/python/fft/qa_fft.py
@@ -210,4 +210,4 @@ class test_fft(gr_unittest.TestCase):
if __name__ == '__main__':
- gr_unittest.run(test_fft, "test_fft.xml")
+ gr_unittest.run(test_fft)
diff --git a/gr-fft/python/fft/qa_goertzel.py b/gr-fft/python/fft/qa_goertzel.py
index 7de8bd6de1..ee4af1bb40 100644
--- a/gr-fft/python/fft/qa_goertzel.py
+++ b/gr-fft/python/fft/qa_goertzel.py
@@ -51,4 +51,4 @@ class test_goertzel(gr_unittest.TestCase):
self.assertAlmostEqual(expected_result, actual_result, places=4)
if __name__ == '__main__':
- gr_unittest.run(test_goertzel, "test_goertzel.xml")
+ gr_unittest.run(test_goertzel)