Use latest postgres version in integration tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-28 17:11:09 +01:00
parent 4ea0978cf6
commit cb440e7c6d

View File

@@ -18,7 +18,7 @@ public sealed class WebAppFactory : WebApplicationFactory<IWebApiMarker>, IAsync
.WithImagePullPolicy(PullPolicy.Always) .WithImagePullPolicy(PullPolicy.Always)
.Build(); .Build();
private const string DockerImage = "postgres:16.3-alpine"; private const string DockerImage = "postgres:alpine";
public HttpClient HttpClient => CreateClient(); public HttpClient HttpClient => CreateClient();