From 7ff6a0dc3a4f6f1ed47f999340f25fe3d5546bd4 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Tue, 2 Mar 2021 17:50:39 +0100 Subject: [PATCH] tests/ps_schedstatistics: fix command order in shell help test --- tests/ps_schedstatistics/tests/01-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ps_schedstatistics/tests/01-run.py b/tests/ps_schedstatistics/tests/01-run.py index beabbfd2bb..157d5dd8cb 100755 --- a/tests/ps_schedstatistics/tests/01-run.py +++ b/tests/ps_schedstatistics/tests/01-run.py @@ -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):