summaryrefslogtreecommitdiff
path: root/gr-digital/python/qa_binary_slicer_fb.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-08-11 11:03:21 -0400
committerTom Rondeau <trondeau@vt.edu>2012-08-11 11:03:21 -0400
commitaf0a5780201c71c8f2d682cdab2274942e5771d5 (patch)
treee27eb179f63c4b910a20599781d2d5b21062ad1b /gr-digital/python/qa_binary_slicer_fb.py
parent5aaea26d457b7ed4c19096072b46b15b4e3f54b4 (diff)
digital: fixed formatting of code to properly comply with new standard.
Diffstat (limited to 'gr-digital/python/qa_binary_slicer_fb.py')
-rwxr-xr-xgr-digital/python/qa_binary_slicer_fb.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/gr-digital/python/qa_binary_slicer_fb.py b/gr-digital/python/qa_binary_slicer_fb.py
index 60d92c5d19..f3cc944e54 100755
--- a/gr-digital/python/qa_binary_slicer_fb.py
+++ b/gr-digital/python/qa_binary_slicer_fb.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2011 Free Software Foundation, Inc.
+# Copyright 2011,2012 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -21,7 +21,7 @@
#
from gnuradio import gr, gr_unittest
-import digital_swig
+import digital_swig as digital
import math, random
class test_binary_slicer_fb (gr_unittest.TestCase):
@@ -36,18 +36,18 @@ class test_binary_slicer_fb (gr_unittest.TestCase):
expected_result = ( 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1)
src_data = (-1, 1, -1, -1, 1, 1, -1, -1, -1, 1, 1, 1, -1, 1, 1, 1, 1)
src_data = [s + (1 - random.random()) for s in src_data] # add some noise
- src = gr.vector_source_f (src_data)
- op = digital_swig.binary_slicer_fb ()
- dst = gr.vector_sink_b ()
+ src = gr.vector_source_f(src_data)
+ op = digital.binary_slicer_fb()
+ dst = gr.vector_sink_b()
- self.tb.connect (src, op)
- self.tb.connect (op, dst)
- self.tb.run () # run the graph and wait for it to finish
+ self.tb.connect(src, op)
+ self.tb.connect(op, dst)
+ self.tb.run() # run the graph and wait for it to finish
- actual_result = dst.data () # fetch the contents of the sink
+ actual_result = dst.data() # fetch the contents of the sink
#print "actual result", actual_result
#print "expected result", expected_result
- self.assertFloatTuplesAlmostEqual (expected_result, actual_result)
+ self.assertFloatTuplesAlmostEqual(expected_result, actual_result)
if __name__ == '__main__':