aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bts/BTS_Tests.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 14e51eb0..6cb20c3b 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -1655,7 +1655,7 @@ testcase TC_paging_tmsi_200percent() runs on test_CT {
var PagingTestState st := f_TC_paging(cfg);
/* We expect about 70% to pass, given that we can fill the paging buffer of 200
* slots and will fully drain that buffer before returning */
- var template integer tpl := (st.num_paging_sent*68/100 .. st.num_paging_sent *72/100);
+ var template integer tpl := (st.num_paging_sent*66/100 .. st.num_paging_sent *72/100);
if (not match(st.num_paging_rcv_ids, tpl)) {
setverdict(fail, "Expected ", tpl, " pagings but have ", st.num_paging_rcv_ids);
} else {