From 30981f7989b22e0e3b837c9420763fffb5586106 Mon Sep 17 00:00:00 2001 From: eb Date: Fri, 22 Dec 2006 03:08:20 +0000 Subject: [PATCH] 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 --- gnuradio-core/src/python/gnuradio/gr/qa_pll_freqdet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- 2.39.5