aboutsummaryrefslogtreecommitdiffstats
path: root/mgw/MGCP_Test.ttcn
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2020-07-08 12:57:13 +0200
committerdexter <pmaier@sysmocom.de>2020-07-21 09:29:15 +0000
commitc60e8477f5305bdb4aadb35477e2d3de5a539c47 (patch)
tree9eb1dacb2c6e781eb0d7b14d62caf756c8f60509 /mgw/MGCP_Test.ttcn
parentc155930c220e08da32903e2e27b6d420cbb140b4 (diff)
MGCP_Test: fix test expectation in TC_crcx_wildcarded_exhaust
The testcase TC_crcx_wildcarded_exhaust assumes a wrong number of endpoints. Since osmo-mgw has a wrongly solved off-by-one in its endpoint allocation it allocates the wrong number of endpoints. This is now fixed, lets now also fix the test expection. (The failure of TC_crcx_wildcarded_exhaust also causes TC_crcx_dlcx_30ep to fail.) Depends: Change id I73b31e3c236a61ea0a6f76ef5ff98ce589f52c77 Change-Id: I73344ef8793cc81df0a1815bb8d890e7849cdd20 Related: OS#2659
Diffstat (limited to 'mgw/MGCP_Test.ttcn')
-rw-r--r--mgw/MGCP_Test.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/mgw/MGCP_Test.ttcn b/mgw/MGCP_Test.ttcn
index be4e6342..6caef795 100644
--- a/mgw/MGCP_Test.ttcn
+++ b/mgw/MGCP_Test.ttcn
@@ -885,7 +885,7 @@ module MGCP_Test {
/* test valid wildcarded CRCX */
testcase TC_crcx_wildcarded_exhaust() runs on dummy_CT {
- const integer n_endpoints := 32;
+ const integer n_endpoints := 31;
var integer i;
var template MgcpCommand cmd;
var MgcpResponse resp;