summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_delay.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/python/blocks/qa_delay.py')
-rw-r--r--gr-blocks/python/blocks/qa_delay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/blocks/qa_delay.py b/gr-blocks/python/blocks/qa_delay.py
index 9e5d103b0f..dffd173e54 100644
--- a/gr-blocks/python/blocks/qa_delay.py
+++ b/gr-blocks/python/blocks/qa_delay.py
@@ -24,7 +24,7 @@ class test_delay(gr_unittest.TestCase):
delta_t = 0
tb = self.tb
src_data = [float(x) for x in range(0, 100)]
- expected_result = tuple(delta_t*[0.0] + src_data)
+ expected_result = list(delta_t*[0.0] + src_data)
src = blocks.vector_source_f(src_data)
op = blocks.delay(gr.sizeof_float, delta_t)
@@ -39,7 +39,7 @@ class test_delay(gr_unittest.TestCase):
delta_t = 10
tb = self.tb
src_data = [float(x) for x in range(0, 100)]
- expected_result = tuple(delta_t*[0.0] + src_data)
+ expected_result = list(delta_t*[0.0] + src_data)
src = blocks.vector_source_f(src_data)
op = blocks.delay(gr.sizeof_float, delta_t)