summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2011-12-18 18:15:21 -0500
committerJohnathan Corgan <jcorgan@corganenterprises.com>2011-12-20 13:32:28 -0800
commitf6a63cd40001514d1118eb482e2926eb2dc7e685 (patch)
tree8683071550628f50c45b0714fde03dfa0a6e2dd8
parente4cf0d1b51b7bc9843e76e8d6e35097664b6f2b3 (diff)
digital: fixed QA code copy/paste error.
-rwxr-xr-xgr-digital/python/qa_binary_slicer_fb.py4
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 944dc1b5aa..60d92c5d19 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")