summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_conjugate.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/python/blocks/qa_conjugate.py')
-rw-r--r--gr-blocks/python/blocks/qa_conjugate.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/python/blocks/qa_conjugate.py b/gr-blocks/python/blocks/qa_conjugate.py
index 904626948d..09eb8fa7d9 100644
--- a/gr-blocks/python/blocks/qa_conjugate.py
+++ b/gr-blocks/python/blocks/qa_conjugate.py
@@ -20,13 +20,13 @@ class test_conjugate (gr_unittest.TestCase):
self.tb = None
def test_000 (self):
- src_data = (-2-2j, -1-1j, -2+2j, -1+1j,
+ src_data = [-2-2j, -1-1j, -2+2j, -1+1j,
2-2j, 1-1j, 2+2j, 1+1j,
- 0+0j)
+ 0+0j]
- exp_data = (-2+2j, -1+1j, -2-2j, -1-1j,
+ exp_data = [-2+2j, -1+1j, -2-2j, -1-1j,
2+2j, 1+1j, 2-2j, 1-1j,
- 0-0j)
+ 0-0j]
src = blocks.vector_source_c(src_data)
op = blocks.conjugate_cc ()