summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/python
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-12-21 21:25:11 -0500
committerTom Rondeau <trondeau@vt.edu>2012-12-21 21:25:11 -0500
commitfa06337ac128609532f904f74c6bdc75fee0e053 (patch)
tree4864677bb538fe2b426cb08756507e2c07116f73 /gnuradio-core/src/python
parent55d3e4a47958be287648a2021f7e92d81086b2d9 (diff)
parent57d9b46d085b6ab208b883e15fed415abb76fea3 (diff)
Merge branch 'next' of gnuradio.org:gnuradio into next
Diffstat (limited to 'gnuradio-core/src/python')
-rwxr-xr-xgnuradio-core/src/python/gnuradio/gr/qa_pdu.py4
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")