sgsn_test: Adapt test case to now-existing InsertSubscriberData

We recently implementd InsertSubscriberData in the SGSN, adapt the test
to reflect that.
This commit is contained in:
Harald Welte 2016-05-06 13:46:21 +02:00
parent 7c55ede8b1
commit cd5e52605c
1 changed files with 2 additions and 2 deletions

View File

@ -610,8 +610,8 @@ static void test_subscriber_gsup(void)
/* Inject InsertSubscrData GSUP message */
last_updated_subscr = NULL;
rc = rx_gsup_message(insert_data_req, sizeof(insert_data_req));
OSMO_ASSERT(rc == -GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
OSMO_ASSERT(last_updated_subscr == NULL);
OSMO_ASSERT(rc = -ENOTSUP); /* not connected */
OSMO_ASSERT(last_updated_subscr == s1);
/* Inject DeleteSubscrData GSUP message */
last_updated_subscr = NULL;