| Index: tools/telemetry/telemetry/timeline/thread.py
|
| diff --git a/tools/telemetry/telemetry/timeline/thread.py b/tools/telemetry/telemetry/timeline/thread.py
|
| index ce8151e0c283e6a575d90d88e8672c0faf02f6fb..1c4a6da9e32f2fa4fbbdec55c0b23a5795f8a579 100644
|
| --- a/tools/telemetry/telemetry/timeline/thread.py
|
| +++ b/tools/telemetry/telemetry/timeline/thread.py
|
| @@ -250,7 +250,7 @@ class Thread(event_container.TimelineEventContainer):
|
| # two end=start+duration combos that should be the same will be slightly
|
| # different. Round back to micros to ensure equality below.
|
| child_end_micros = round(child.end * 1000)
|
| - root_end_micros = round(root.end * 1000)
|
| + root_end_micros = round(root.end * 1000)
|
| if child.start >= root.start and child_end_micros <= root_end_micros:
|
| if len(root.sub_slices) > 0:
|
| if self._AddSliceIfBounds(root.sub_slices[-1], child):
|
|
|