diff options
author | eb | 2006-12-22 03:08:20 +0000 |
---|---|---|
committer | eb | 2006-12-22 03:08:20 +0000 |
commit | 30981f7989b22e0e3b837c9420763fffb5586106 (patch) | |
tree | 9bc07df01d66c53f8d98c68e71dcf6ec4b29fe0a /gnuradio-core/src | |
parent | 0d638d7cab2f52e4331de5ebb0e9018cc6f95b12 (diff) | |
download | gnuradio-30981f7989b22e0e3b837c9420763fffb5586106.tar.gz gnuradio-30981f7989b22e0e3b837c9420763fffb5586106.tar.bz2 gnuradio-30981f7989b22e0e3b837c9420763fffb5586106.zip |
loosen tolerance so that opteron passes (64-bit vs 80-bit FP arith)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4184 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src')
-rwxr-xr-x | gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py b/gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py index 137bc8538..b9ec03b3b 100755 --- a/gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py +++ b/gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py @@ -155,7 +155,7 @@ class test_sig_source (gr_unittest.TestCase): # convert it from normalized frequency to absolute frequency (Hz) dst_data = [i*(sampling_freq/(2*math.pi)) for i in dst_data] - self.assertFloatTuplesAlmostEqual (expected_result, dst_data, 5) + self.assertFloatTuplesAlmostEqual (expected_result, dst_data, 4) if __name__ == '__main__': gr_unittest.main () |