diff options
author | Tom Rondeau | 2011-12-18 18:15:21 -0500 |
---|---|---|
committer | Tom Rondeau | 2011-12-18 18:15:21 -0500 |
commit | 6333ad7881a51e38f0f1b6b4180e23198ce90783 (patch) | |
tree | 4444873a58e078a0bb591701d33de16a78a063ca | |
parent | 8af43d7dcdea3d7cd091bafd22ebf20d4df50edc (diff) | |
download | gnuradio-6333ad7881a51e38f0f1b6b4180e23198ce90783.tar.gz gnuradio-6333ad7881a51e38f0f1b6b4180e23198ce90783.tar.bz2 gnuradio-6333ad7881a51e38f0f1b6b4180e23198ce90783.zip |
digital: fixed QA code copy/paste error.
-rwxr-xr-x | gr-digital/python/qa_binary_slicer_fb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/qa_binary_slicer_fb.py b/gr-digital/python/qa_binary_slicer_fb.py index 944dc1b5a..60d92c5d1 100755 --- a/gr-digital/python/qa_binary_slicer_fb.py +++ b/gr-digital/python/qa_binary_slicer_fb.py @@ -24,7 +24,7 @@ from gnuradio import gr, gr_unittest import digital_swig import math, random -class test_constellation_decoder (gr_unittest.TestCase): +class test_binary_slicer_fb (gr_unittest.TestCase): def setUp (self): self.tb = gr.top_block () @@ -51,5 +51,5 @@ class test_constellation_decoder (gr_unittest.TestCase): if __name__ == '__main__': - gr_unittest.run(test_constellation_decoder, "test_constellation_decoder.xml") + gr_unittest.run(test_binary_slicer_fb, "test_binary_slicer_fb.xml") |