summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gr-soapy/python/soapy/qa_soapy_types.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-soapy/python/soapy/qa_soapy_types.py b/gr-soapy/python/soapy/qa_soapy_types.py
index af8ab3864a..64cf4147bf 100644
--- a/gr-soapy/python/soapy/qa_soapy_types.py
+++ b/gr-soapy/python/soapy/qa_soapy_types.py
@@ -9,6 +9,7 @@
from gnuradio import gr, gr_unittest, blocks
from gnuradio import soapy
+
class test_soapy_types(gr_unittest.TestCase):
def test_range(self):
@@ -46,7 +47,7 @@ class test_soapy_types(gr_unittest.TestCase):
test_arginfo.type = val
self.assertEqual(test_arginfo.type, val)
- test_arginfo.range = soapy.range_t(1,2,0.5)
+ test_arginfo.range = soapy.range_t(1, 2, 0.5)
self.assertAlmostEqual(test_arginfo.range.minimum(), 1, 9)
self.assertAlmostEqual(test_arginfo.range.maximum(), 2, 9)
self.assertAlmostEqual(test_arginfo.range.step(), 0.5, 9)