From 26bd9948522d0f778a2bcd0ac6bbf666b58adaa7 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 31 Jul 2025 23:43:35 +0300 Subject: [PATCH] reformat --- test_runner/regress/test_branching.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test_runner/regress/test_branching.py b/test_runner/regress/test_branching.py index ce9bb1c8b5..40f8d13352 100644 --- a/test_runner/regress/test_branching.py +++ b/test_runner/regress/test_branching.py @@ -195,7 +195,10 @@ def test_cannot_create_endpoint_on_non_uploaded_timeline(neon_env_builder: NeonE env.neon_cli.mappings_map_branch(initial_branch, env.initial_tenant, env.initial_timeline) - with pytest.raises(RuntimeError, match=f"Timeline {env.initial_tenant}/{env.initial_timeline} is not active"): + with pytest.raises( + RuntimeError, + match=f"Timeline {env.initial_tenant}/{env.initial_timeline} is not active", + ): env.endpoints.create_start( initial_branch, tenant_id=env.initial_tenant, basebackup_request_tries=2 )