tests: remote: Sort tests correctly
Problem appeared after introducing python3 support. Signed-off-by: Janusz Dziedzic <janusz.dziedzic@gmail.com>
This commit is contained in:
parent
e7b27637a5
commit
ac6595f281
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ def main():
|
|||
|
||||
# sort the list
|
||||
test_names.sort()
|
||||
tests.sort()
|
||||
tests.sort(key=lambda t: t.__name__)
|
||||
|
||||
# print help
|
||||
if requested_tests[0] == "help" and len(requested_hwsim_tests) == 0:
|
||||
|
|
Loading…
Reference in a new issue