Update test_compute_restart.py

This commit is contained in:
Konstantin Knizhnik
2024-10-17 10:29:08 +03:00
parent 5f37c3802e
commit aa3ef2f048

View File

@@ -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()