fix: update docker-compose port for db

This commit is contained in:
Florian Pellissier
2024-05-24 11:14:52 +02:00
parent 30eb0d5add
commit bcf11876d2
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ class TestRunner:
print(f"❗️ {test['name']} failed: {result.message}")
self.tycho_runner.empty_database(
"postgres://postgres:mypassword@localhost:5432"
"postgres://postgres:mypassword@localhost:5431"
)
def validate_state(self, expected_state: dict, stop_block: int) -> TestResult: