From: eb Date: Fri, 22 Dec 2006 03:08:20 +0000 (+0000) Subject: loosen tolerance so that opteron passes (64-bit vs 80-bit FP arith) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=30981f7989b22e0e3b837c9420763fffb5586106;p=debian%2Fgnuradio 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 --- 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 137bc853..b9ec03b3 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 ()