summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-08-12 20:55:01 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-08-12 20:55:01 +0000
commitdcb082ccae862a4e2df90b48f8281169d993cec4 (patch)
tree4ee899509de9416c1dc7d9389516db665bcf8172 /tests
parente381cedec4baa0e2d209f1b57bce32f6f5e8421e (diff)
downloadgst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.tar.gz
gst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.tar.bz2
gst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.zip
tests/check/elements/bpwsinc.c: Make one test constraint a bit stricter.
Original commit message from CVS: * tests/check/elements/bpwsinc.c: (GST_START_TEST): Make one test constraint a bit stricter.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/bpwsinc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/bpwsinc.c b/tests/check/elements/bpwsinc.c
index 4faf6fc2..1295fac4 100644
--- a/tests/check/elements/bpwsinc.c
+++ b/tests/check/elements/bpwsinc.c
@@ -254,7 +254,7 @@ GST_START_TEST (test_bp_22050hz)
for (i = 0; i < 1024; i++)
rms += res[i] * res[i];
rms = sqrt (rms / 1024.0);
- fail_unless (rms <= 0.3);
+ fail_unless (rms <= 0.1);
/* cleanup */
cleanup_bpwsinc (bpwsinc);