diff options
author | Johnathan Corgan | 2012-09-04 16:39:30 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-09-04 16:39:30 -0700 |
commit | c5ddf4c26bf8bc049622b2e9ffcdcdba3265b580 (patch) | |
tree | 54acb28c3be27cb222ead52795c1f7fbe1a8f121 /gr-blocks/python | |
parent | 73d59860c4cc0e2b22c21d56cd5cdfcb969263eb (diff) | |
download | gnuradio-c5ddf4c26bf8bc049622b2e9ffcdcdba3265b580.tar.gz gnuradio-c5ddf4c26bf8bc049622b2e9ffcdcdba3265b580.tar.bz2 gnuradio-c5ddf4c26bf8bc049622b2e9ffcdcdba3265b580.zip |
blocks: added gr::blocks::vector_to_streams
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-x | gr-blocks/python/qa_pipe_fittings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/qa_pipe_fittings.py b/gr-blocks/python/qa_pipe_fittings.py index 6a4ba8b3a..321660d5e 100755 --- a/gr-blocks/python/qa_pipe_fittings.py +++ b/gr-blocks/python/qa_pipe_fittings.py @@ -109,7 +109,7 @@ class test_pipe_fittings(gr_unittest.TestCase): self.tb.run() self.assertEqual(expected_results, dst.data()) - """ + def test_004(self): #Test vector_to_streams. @@ -132,7 +132,7 @@ class test_pipe_fittings(gr_unittest.TestCase): self.tb.run() self.assertEqual(expected_results, dst.data()) - """ + if __name__ == '__main__': gr_unittest.run(test_pipe_fittings, "test_pipe_fittings.xml") |