summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_exponentiate_const_cci.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/python/blocks/qa_exponentiate_const_cci.py')
-rw-r--r--gr-blocks/python/blocks/qa_exponentiate_const_cci.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/blocks/qa_exponentiate_const_cci.py b/gr-blocks/python/blocks/qa_exponentiate_const_cci.py
index 30b9d5ad94..aaa04db7b4 100644
--- a/gr-blocks/python/blocks/qa_exponentiate_const_cci.py
+++ b/gr-blocks/python/blocks/qa_exponentiate_const_cci.py
@@ -23,8 +23,8 @@ class qa_exponentiate_const_cci(gr_unittest.TestCase):
def test_001_t(self):
for exponent in range(1,10):
- in_data = (1+1j, -1, 4-1j, -3-7j)
- out_data = (in_data[0]**exponent, in_data[1]**exponent, in_data[2]**exponent, in_data[3]**exponent)
+ in_data = [1+1j, -1, 4-1j, -3-7j]
+ out_data = [in_data[0]**exponent, in_data[1]**exponent, in_data[2]**exponent, in_data[3]**exponent]
# Test streaming input
source = blocks.vector_source_c(in_data, False, 1)