diff options
Diffstat (limited to 'gr-blocks/python/qa_copy.py')
-rwxr-xr-x | gr-blocks/python/qa_copy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/python/qa_copy.py b/gr-blocks/python/qa_copy.py index 04f6454231..012d790609 100755 --- a/gr-blocks/python/qa_copy.py +++ b/gr-blocks/python/qa_copy.py @@ -46,7 +46,7 @@ class test_copy(gr_unittest.TestCase): src_data = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) expected_result = () src = blocks.vector_source_b(src_data) - op = blocks.copy(gr.sizeof_char) + op = gr.copy(gr.sizeof_char) op.set_enabled(False) dst = blocks.vector_sink_b() self.tb.connect(src, op, dst) |