Fix mssql testcontaint wait strategy

This commit is contained in:
Adria Navarro 2024-07-24 14:49:23 +02:00
parent 932c331076
commit 82c8be5f55
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export async function getDatasource(): Promise<Datasource> {
})
.withWaitStrategy(
Wait.forSuccessfulCommand(
"/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P Password_123 -q 'SELECT 1'"
"/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P Password_123 -q 'SELECT 1'"
)
)
)