BSSGP_Emulation: dont fail when removing a non-exitent client

On multiple BSSGP tests the IMSI might not anymore registered to the first BSSGP

Change-Id: Ibad8971e5acc2691da29cf7fa394d1d58eea79a4
This commit is contained in:
Alexander Couzens 2018-07-31 15:55:34 +02:00 committed by Harald Welte
parent 7eb5b85f39
commit 56101c935e
1 changed files with 2 additions and 2 deletions

View File

@ -321,8 +321,8 @@ private function f_tbl_client_del(hexstring imsi, BSSGP_Client_CT vc_conn) runs
return;
}
}
setverdict(fail, "Could not find client for IMSI ", imsi);
mtc.stop;
log("Warning: Could not find client for IMSI ", imsi);
return;
}
/* TS 44.064 7.2.1.1 LLGMM-ASSIGN */