summaryrefslogtreecommitdiff
path: root/gr-blocks/python
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2014-06-27 15:09:09 -0400
committerTom Rondeau <tom@trondeau.com>2014-06-27 15:09:09 -0400
commit34b04e3f9a1e9f20d1011a23192b97ea9b7e6b04 (patch)
treee780518e438d70a94026877321e6f972201853be /gr-blocks/python
parent6be4c6fc1190f83764a317ad8185bbd6b4f813ba (diff)
blocks: cleanup qa output statement in qa_keep_one_in_n
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-xgr-blocks/python/blocks/qa_keep_one_in_n.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_keep_one_in_n.py b/gr-blocks/python/blocks/qa_keep_one_in_n.py
index 2a5d936cce..d8251fe611 100755
--- a/gr-blocks/python/blocks/qa_keep_one_in_n.py
+++ b/gr-blocks/python/blocks/qa_keep_one_in_n.py
@@ -36,7 +36,6 @@ class test_keep_one_in_n(gr_unittest.TestCase):
src = blocks.vector_source_b(src_data);
op = blocks.keep_one_in_n(gr.sizeof_char, 5)
dst = blocks.vector_sink_b()
- print "HERE"
self.tb.connect(src, op, dst)
self.tb.run()
self.assertEqual(dst.data(), expected_data)