Skip to content

Commit 759c7cc

Browse files
authored
Update Lib/test/test_perf_profiler.py
1 parent 71633f7 commit 759c7cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_perf_profiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,12 @@ def baz():
160160
self.assertIn(f"py::bar_fork:{script}", child_perf_file_contents)
161161
self.assertIn(f"py::baz_fork:{script}", child_perf_file_contents)
162162

163-
# The parent's map should not contain the child's symbols
163+
# The parent's map should not contain the child's symbols.
164164
self.assertNotIn(f"py::foo_fork:{script}", perf_file_contents)
165165
self.assertNotIn(f"py::bar_fork:{script}", perf_file_contents)
166166
self.assertNotIn(f"py::baz_fork:{script}", perf_file_contents)
167167

168-
# The child's map should not contain the parent's symbols
168+
# The child's map should not contain the parent's symbols.
169169
self.assertNotIn(f"py::foo:{script}", child_perf_file_contents)
170170
self.assertNotIn(f"py::bar:{script}", child_perf_file_contents)
171171
self.assertNotIn(f"py::baz:{script}", child_perf_file_contents)

0 commit comments

Comments
 (0)