summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_threshold.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/python/blocks/qa_threshold.py')
-rw-r--r--gr-blocks/python/blocks/qa_threshold.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_threshold.py b/gr-blocks/python/blocks/qa_threshold.py
index 079a12d613..bb7f01f96b 100644
--- a/gr-blocks/python/blocks/qa_threshold.py
+++ b/gr-blocks/python/blocks/qa_threshold.py
@@ -24,7 +24,7 @@ class test_threshold(gr_unittest.TestCase):
data = [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 2, 2, 2]
- expected_result = (0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1)
+ expected_result = [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1]
src = blocks.vector_source_f(data, False)
op = blocks.threshold_ff(1, 1)