1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

tests/ps_schedstatistics: fix command order in shell help test

This commit is contained in:
Kaspar Schleiser 2021-03-02 17:50:39 +01:00 committed by Marian Buschsieweke
parent 5ea582b3dd
commit 7ff6a0dc3a
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -44,9 +44,9 @@ def _check_help(child):
child.sendline('help')
child.expect_exact('Command Description')
child.expect_exact('---------------------------------------')
child.expect_exact('reboot Reboot the node')
child.expect_exact('ps Prints information about '
'running threads.')
child.expect_exact('reboot Reboot the node')
def _check_ps(child):