From 30b15bddc44b495e4596af5a683401225fda949e Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Wed, 13 Aug 2014 12:11:48 +0300 Subject: [PATCH] lower ISI on test_full --- tests/test_full.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_full.py b/tests/test_full.py index 1cc2893..9d5202d 100644 --- a/tests/test_full.py +++ b/tests/test_full.py @@ -43,11 +43,11 @@ def apply_filter(b, a, x): def test_lowpass(): - run(1024, lambda x: apply_filter(b=[0.8], a=[1.0, -0.2], x=x)) + run(1024, lambda x: apply_filter(b=[0.9], a=[1.0, -0.1], x=x)) def test_highpass(): - run(1024, lambda x: apply_filter(b=[0.8], a=[1.0, 0.2], x=x)) + run(1024, lambda x: apply_filter(b=[0.9], a=[1.0, 0.1], x=x)) def test_small():