1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #14518 from RIOT-OS/examples/fix/micropython-14224

examples/micropython: fix checked PID
This commit is contained in:
Alexandre Abadie 2020-07-15 21:50:35 +02:00 committed by GitHub
commit 9f3254533d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ def testfunc(child):
# test riot.thread_getpid()
child.sendline('import riot')
child.sendline('print(riot.thread_getpid())')
child.expect_exact('2')
child.expect(r'\d+')
child.expect_exact('>>>')
#