Skip to content

Commit

Permalink
Fix test one last time
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha Krassovsky committed Jan 11, 2024
1 parent ac39a37 commit 986d092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_runner/regress/test_migrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_migrations(neon_simple_env: NeonEnv):

with open(log_path, "r") as log_file:
logs = log_file.read()
assert "INFO start_compute:apply_config:handle_migrations: Ran 2 migrations" in logs
assert "INFO handle_migrations: Ran 2 migrations" in logs

endpoint.stop()
endpoint.start()
Expand All @@ -34,4 +34,4 @@ def test_migrations(neon_simple_env: NeonEnv):

with open(log_path, "r") as log_file:
logs = log_file.read()
assert "INFO start_compute:apply_config:handle_migrations: Ran 0 migrations" in logs
assert "INFO handle_migrations: Ran 0 migrations" in logs

0 comments on commit 986d092

Please sign in to comment.