aboutsummaryrefslogtreecommitdiffstats
path: root/bts
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-05-31 20:24:03 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-06-01 14:03:42 +0700
commitab448a516a70ffb690787f4f8baaaca3db88f84f (patch)
treea1a42b0e4b639206e051439ceb9608674c3085e0 /bts
parente432ba9222d9e09941dc3c03e92c6db286328bab (diff)
library/RSL_Types.ttcn: t(r|)s_RSL_CHAN_RQD: make chan_nr configurable
Diffstat (limited to 'bts')
-rw-r--r--bts/BTS_Tests.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 7aa74d23..edf056af 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -1245,10 +1245,10 @@ testcase TC_rach_content() runs on test_CT {
timer T := 5.0;
T.start;
alt {
- [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(ra, fn, ?))) {
+ [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(ra, fn, t_RslChanNr_RACH(0)))) {
T.stop;
}
- [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(?, ?, ?))) {
+ [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(?, ?, ?, ?))) {
Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected CHAN RQD");
}
[] RSL_CCHAN.receive { repeat; }