diff options
author | Ben Reynwar <ben@reynwar.net> | 2013-03-11 20:30:13 -0700 |
---|---|---|
committer | Ben Reynwar <ben@reynwar.net> | 2013-03-11 20:30:13 -0700 |
commit | fe9b0ee3ea739ac07321acd31fc5824192cf7cb8 (patch) | |
tree | 7a1abd82bd7d726f0b906706a9410576802e7fa8 /gr-blocks/python/blocks/qa_stream_mux.py | |
parent | e8bf0ad5a721645f81b7c90743b4867b352d504c (diff) |
blocks: Updating testing environment.
Diffstat (limited to 'gr-blocks/python/blocks/qa_stream_mux.py')
-rwxr-xr-x | gr-blocks/python/blocks/qa_stream_mux.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/python/blocks/qa_stream_mux.py b/gr-blocks/python/blocks/qa_stream_mux.py index 657bd3d63f..fe28c2de9a 100755 --- a/gr-blocks/python/blocks/qa_stream_mux.py +++ b/gr-blocks/python/blocks/qa_stream_mux.py @@ -20,8 +20,8 @@ # Boston, MA 02110-1301, USA. # -from gnuradio import gr, gr_unittest -import blocks_swig +from gnuradio import gr, gr_unittest, blocks + import os class test_stream_mux (gr_unittest.TestCase): @@ -37,7 +37,7 @@ class test_stream_mux (gr_unittest.TestCase): v0 = gr.vector_source_f(N*[1,], False) v1 = gr.vector_source_f(N*[2,], False) - mux = blocks_swig.stream_mux(gr.sizeof_float, stream_sizes) + mux = blocks.stream_mux(gr.sizeof_float, stream_sizes) dst = gr.vector_sink_f () @@ -56,7 +56,7 @@ class test_stream_mux (gr_unittest.TestCase): v0 = gr.vector_source_f(r1, False) v1 = gr.vector_source_f(r2, False) - mux = blocks_swig.stream_mux(gr.sizeof_float, stream_sizes) + mux = blocks.stream_mux(gr.sizeof_float, stream_sizes) dst = gr.vector_sink_f () |