aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2022-12-19 21:21:32 +0100
committerlynxis lazus <lynxis@fe80.eu>2023-01-03 09:13:52 +0000
commit315af2f9ea1e8b9bf6e58caebd9dd7829edecfed (patch)
tree67de160a5ed6834b768c8b09b662adf7aa561526 /tests
parent6cc5f08eb8fc3d2cc7e87fba89821903fde0f1d7 (diff)
bts: ipa/osmo-bts/sysmobts: MO: add support for the second NSVC
The second NSVC MO has been explicit skipped and never been interacted with. osmo-bts is already supporting it for a long time as well the PCU is supporting it at least since the NS2 code migration. Fixes the ttcn3 test case BTS_Tests.TC_pcu_socket_two_nsvc. Closes: OS#5835 Change-Id: I3486a7cc9a424602b73f8adc2fefce169213e46b
Diffstat (limited to 'tests')
-rw-r--r--tests/nanobts_omlattr/nanobts_omlattr_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/nanobts_omlattr/nanobts_omlattr_test.c b/tests/nanobts_omlattr/nanobts_omlattr_test.c
index bccd99e37..356932782 100644
--- a/tests/nanobts_omlattr/nanobts_omlattr_test.c
+++ b/tests/nanobts_omlattr/nanobts_omlattr_test.c
@@ -88,7 +88,7 @@ static void test_nanobts_gen_set_nsvc_attr(struct gsm_bts *bts, uint8_t *expecte
printf("Testing nanobts_gen_set_nsvc_attr()...\n");
- msgb = nanobts_gen_set_nsvc_attr(bts);
+ msgb = nanobts_gen_set_nsvc_attr(&bts->site_mgr->gprs.nsvc[0]);
printf("result= %s\n", osmo_hexdump_nospc(msgb->data, msgb->len));
printf("expected=%s\n", osmo_hexdump_nospc(expected, msgb->len));
OSMO_ASSERT(msgb_eq_data_print(msgb, expected, msgb->len));