From bb6127f495f2ce65fc5dfc2a5ade067b51ebb958 Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Wed, 23 Jul 2025 15:16:02 +0200 Subject: [PATCH] Update the comment --- test_runner/random_ops/test_random_ops.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_runner/random_ops/test_random_ops.py b/test_runner/random_ops/test_random_ops.py index 36f50428e6..ac278425af 100644 --- a/test_runner/random_ops/test_random_ops.py +++ b/test_runner/random_ops/test_random_ops.py @@ -143,8 +143,7 @@ class NeonBranch: def __str__(self): """ - Prints the branch's id with all the predecessors - (r) means the branch is a reset one + Prints the branch's information with all the predecessors """ return f"{self.id}{f'({self.name})' if self.name and self.name != self.id else ''}{f'(restored_from: {self.restored_from})' if self.restored_from else ''}, parent: {self.parent}"