From aa3ef2f0487eef7c151bcb95a553876e96c03ed3 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Thu, 17 Oct 2024 10:29:08 +0300 Subject: [PATCH] Update test_compute_restart.py --- test_runner/regress/test_compute_restart.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test_runner/regress/test_compute_restart.py b/test_runner/regress/test_compute_restart.py index 6eb6b06356..3db68687e3 100644 --- a/test_runner/regress/test_compute_restart.py +++ b/test_runner/regress/test_compute_restart.py @@ -1,8 +1,6 @@ import threading -import time from fixtures.neon_fixtures import NeonEnv -from fixtures.utils import wait_until def test_compute_restart(neon_simple_env: NeonEnv): @@ -11,7 +9,7 @@ def test_compute_restart(neon_simple_env: NeonEnv): pub = env.endpoints.create("publisher") pub.start() - sub_timeline_id = env.neon_cli.create_branch("subscriber") + sub_timeline_id = env.create_branch("subscriber") sub = env.endpoints.create("subscriber") sub.start() @@ -38,4 +36,3 @@ def test_compute_restart(neon_simple_env: NeonEnv): sub.start() thread.join() -