1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

tests/emcute: Use test_utils_interactive_sync_shell to sync

This commit is contained in:
Leandro Lanzieri 2020-03-19 17:42:49 +01:00
parent 200d091189
commit b8dd4f1005

View File

@ -105,9 +105,9 @@ class MQTTSNServer(Automaton):
# >>> automaton states <<< #
@ATMT.state(initial=1)
def BEGIN(self):
utils.test_utils_interactive_sync(self.spawn,
TEST_INTERACTIVE_RETRIES,
TEST_INTERACTIVE_DELAY)
utils.test_utils_interactive_sync_shell(self.spawn,
TEST_INTERACTIVE_RETRIES,
TEST_INTERACTIVE_DELAY)
raise self.CONNECT_FROM_NODE()
@ATMT.state()