From 76832488d08db4385ab065d562a0e02a4c705a32 Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Wed, 23 Jul 2025 15:09:02 +0200 Subject: [PATCH] Add a log with the new branch --- test_runner/random_ops/test_random_ops.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test_runner/random_ops/test_random_ops.py b/test_runner/random_ops/test_random_ops.py index 204762040d..36f50428e6 100644 --- a/test_runner/random_ops/test_random_ops.py +++ b/test_runner/random_ops/test_random_ops.py @@ -535,6 +535,7 @@ class NeonProject: # So, we delete parent_id new_branch_def["branch"].pop("parent_id") new_branch = NeonBranch(self, new_branch_def) + log.info("Restored snapshot to the branch: %s", new_branch) target_branch_def = self.neon_api.get_branch_details(self.id, target_branch.id) if "name" in target_branch_def["branch"]: target_branch.name = target_branch_def["branch"]["name"]