diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2012-12-20 19:20:53 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2012-12-20 19:20:53 -0800 |
commit | 6fd15fce151b18fe00f9ab0db12512563172711d (patch) | |
tree | 84b30fdcfef3cffb958871a81df8fb2d22347fe2 /gnuradio-core/src/python | |
parent | b60396ab638534aff05fa5b0c8b8c0b334b4e58e (diff) | |
parent | 1bb31c97fb2b764f8133c844102558c0db046b05 (diff) |
Merge remote-tracking branch 'ncorgan/pdu_fix'
Diffstat (limited to 'gnuradio-core/src/python')
-rwxr-xr-x | gnuradio-core/src/python/gnuradio/gr/qa_pdu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_pdu.py b/gnuradio-core/src/python/gnuradio/gr/qa_pdu.py index ebc365b611..572d8b1861 100755 --- a/gnuradio-core/src/python/gnuradio/gr/qa_pdu.py +++ b/gnuradio-core/src/python/gnuradio/gr/qa_pdu.py @@ -36,8 +36,8 @@ class test_pdu(gr_unittest.TestCase): # Just run some data through and make sure it doesn't puke. src_data = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) - src = gr.pdu_to_tagged_stream(gr.BYTE) - snk3 = gr.tagged_stream_to_pdu(gr.BYTE) + src = gr.pdu_to_tagged_stream(gr.pdu_byte) + snk3 = gr.tagged_stream_to_pdu(gr.pdu_byte) snk2 = gr.vector_sink_b() snk = gr.tag_debug(1, "test") |