pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42414?usp=email )
Change subject: 5gc: Remove conditional check for nightly repo in TC_pdu_sess_modification ......................................................................
5gc: Remove conditional check for nightly repo in TC_pdu_sess_modification
open5gs 2.7.7 was recently released, so there's no need to guard for nightly repo, since latest repo should contain now 2.7.7 with the needed fix.
Change-Id: Ie37fb0e895710fdc7a4d497812cc2585b00996f8 --- M 5gc/C5G_Tests.ttcn 1 file changed, 2 insertions(+), 5 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved
diff --git a/5gc/C5G_Tests.ttcn b/5gc/C5G_Tests.ttcn index 815b800..b5ac792 100644 --- a/5gc/C5G_Tests.ttcn +++ b/5gc/C5G_Tests.ttcn @@ -919,11 +919,8 @@ execute( TC_periodic_registration_updating() ); execute( TC_ue_context_release_no_pdu_session() ); execute( TC_ue_context_release_with_pdu_session() ); - /* Remove "is nightly" check after open5gs > 2.7.6 is released with - * https://github.com/open5gs/open5gs/commit/59391d8d5ce23835456d4cebbd23c52a18... */ - if (Misc_Helpers.f_osmo_repo_is("nightly")) { - execute( TC_pdu_sess_modification() ); - } + execute( TC_pdu_sess_modification() ); + execute( TC_ng_register_ping4() ); execute( TC_ng_register_ping4_256() );