Skip to content

Commit ee5fea4

Browse files
committed
Address review comments
1 parent 06ea053 commit ee5fea4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/test/config/config_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ def test_config(name):
103103
]
104104
for typ in Resources.ALL_FILE_TYPES:
105105
for _, path in resources.get_file_refs(typ):
106-
print(path)
107106
if included_source and path in included_source:
108107
included_source.remove(path)
109108
if excluded_source:

tools/test/resources/resource_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
SRC_PATHS = {
2222
'': join(dirname(__file__), 'source'),
23+
# The online compiler uses a similar mapping, with the `.lib` suffix.
2324
'mbed-os': join(dirname(__file__), 'mbed-os.lib'),
2425
}
2526

@@ -76,7 +77,7 @@ def test_add_target_info(self):
7677

7778
def test_detect_duplicates(self):
7879
"""
79-
Verify that detect_duplicates finds all off the duplicate object files
80+
Verify that detect_duplicates finds all of the duplicate object files
8081
in the scanned tree.
8182
"""
8283
notifier = MockNotifier()

0 commit comments

Comments
 (0)