aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2019-04-30 10:48:02 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2019-04-30 10:54:48 +0100
commit41cd68146d33b4edd776665acaeaa942e5982329 (patch)
tree718d93d8f0693d65081fcb9cb4c4f4b127696e6c
parent61f28773bfb47b13f74d584ed6f03c8fd79e5a0b (diff)
ms_driver: Catch up with the new MS baseclass
-rw-r--r--src/osmo_ms_driver/__main__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo_ms_driver/__main__.py b/src/osmo_ms_driver/__main__.py
index 24acd61..d753897 100644
--- a/src/osmo_ms_driver/__main__.py
+++ b/src/osmo_ms_driver/__main__.py
@@ -23,7 +23,7 @@ from .cdf import cdfs
from .starter import BinaryOptions
from .test_support import imsi_ki_gen
from osmo_gsm_tester import log, util
-from osmo_gsm_tester import ms
+from osmo_gsm_tester import ms_osmo_mobile
# System modules
from datetime import timedelta
@@ -97,7 +97,7 @@ def main():
'ki': ki,
'auth_algo': 'comp128v1',
}
- test.subscriber_add(ms.MS("ms_%d" % i, conf))
+ test.subscriber_add(ms_osmo_mobile.MSOsmoMobile("ms_%d" % i, conf))
atexit.register(test.stop_all)