diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2017-05-02 15:01:27 +0200 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2017-05-02 15:01:27 +0200 |
commit | 28a39d59e50c0121a242401de996bc9e8cf3e3b8 (patch) | |
tree | e965d292564435dd61e4500627b09c8f48fc5457 /selftest | |
parent | 9dbcb828aa2b8ae13288e81d8332307afbe60a02 (diff) |
mo_mt_sms.py: remove short timeout; cosmetic: log properties
Diffstat (limited to 'selftest')
-rwxr-xr-x | selftest/real_suite/suites/sms/mo_mt_sms.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/selftest/real_suite/suites/sms/mo_mt_sms.py b/selftest/real_suite/suites/sms/mo_mt_sms.py index 9c8cca9..12f3112 100755 --- a/selftest/real_suite/suites/sms/mo_mt_sms.py +++ b/selftest/real_suite/suites/sms/mo_mt_sms.py @@ -19,7 +19,9 @@ nitb.subscriber_add(ms_mt) ms_mo.connect(nitb) ms_mt.connect(nitb) -wait(nitb.subscriber_attached, ms_mo, ms_mt, timeout=20) +print(ms_mo.properties()) +print(ms_mt.properties()) +wait(nitb.subscriber_attached, ms_mo, ms_mt) sms = ms_mo.sms_send(ms_mt.msisdn) wait(ms_mt.sms_received, sms) |