diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-08-18 11:08:06 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-08-18 11:08:06 -0400 |
commit | a8f91e9cca303d13fa153e8995fe8d093e3217ab (patch) | |
tree | a7897adcce21a7c6feab128a90945ccce73def79 /gr-digital/python/qa_pfb_clock_sync.py | |
parent | a20c676a1a33c6a869844ce92f351e5ae8cfa044 (diff) |
digital: cleaning up.
Diffstat (limited to 'gr-digital/python/qa_pfb_clock_sync.py')
-rwxr-xr-x | gr-digital/python/qa_pfb_clock_sync.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-digital/python/qa_pfb_clock_sync.py b/gr-digital/python/qa_pfb_clock_sync.py index 27322616de..44419264f7 100755 --- a/gr-digital/python/qa_pfb_clock_sync.py +++ b/gr-digital/python/qa_pfb_clock_sync.py @@ -27,13 +27,13 @@ import random, cmath class test_pfb_clock_sync(gr_unittest.TestCase): - def setUp (self): - self.tb = gr.top_block () + def setUp(self): + self.tb = gr.top_block() - def tearDown (self): + def tearDown(self): self.tb = None - def test01 (self): + def test01(self): # Test BPSK sync excess_bw = 0.35 @@ -83,10 +83,10 @@ class test_pfb_clock_sync(gr_unittest.TestCase): #for e,d in zip(expected_result, dst_data): # print e, d - self.assertComplexTuplesAlmostEqual (expected_result, dst_data, 1) + self.assertComplexTuplesAlmostEqual(expected_result, dst_data, 1) - def test02 (self): + def test02(self): # Test real BPSK sync excess_bw = 0.35 @@ -136,7 +136,7 @@ class test_pfb_clock_sync(gr_unittest.TestCase): #for e,d in zip(expected_result, dst_data): # print e, d - self.assertComplexTuplesAlmostEqual (expected_result, dst_data, 1) + self.assertComplexTuplesAlmostEqual(expected_result, dst_data, 1) if __name__ == '__main__': |