diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-16 23:34:34 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-16 23:52:20 -0400 |
commit | 51cbe589f7cd74056be613587e82e8d3b3168e84 (patch) | |
tree | 22d22d0919e52147286ce888343724c9529d8dcd /gr-blocks/python/qa_copy.py | |
parent | a792bb88f3c3caa347506503de973aafaf78e0af (diff) |
blocks: moved nop, null source/sink, copy, vector_map to gr-blocks.
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) |