Skip to content

Commit 7619346

Browse files
author
Olli-Pekka Puolitaival
authored
Merge pull request #180 from OPpuolitaival/py3_fixes
Fix json export to work with python 3
2 parents ab76a27 + 24f2cd5 commit 7619346

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/mbed-greentea/mbed_greentea/mbed_greentea_cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,6 @@ def get_parallel_value(value):
928928
execute_threads = []
929929

930930
if opts.verbose_test_configuration_only:
931-
print
932931
print("Example: execute 'mbedgt --target=TARGET_NAME' to start testing for TARGET_NAME target")
933932
return (0)
934933

src/mbed_os_tools/test/mbed_test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def get_memory_metrics(output):
395395
thread_arg = thread_entry_arg_split[1]
396396
thread_info[thread_entry_arg]['arg'] = thread_arg
397397

398-
thread_info_list = thread_info.values()
398+
thread_info_list = list(thread_info.values())
399399

400400
return max_heap_usage, reserved_heap, thread_info_list
401401

0 commit comments

Comments
 (0)