From cb440e7c6d9bec0fbc8c8572eb361dcc67fba371 Mon Sep 17 00:00:00 2001 From: ThompsonNye Date: Sat, 28 Dec 2024 17:11:09 +0100 Subject: [PATCH] Use latest postgres version in integration tests --- tests/WebApi.Tests.Integration/WebAppFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/WebApi.Tests.Integration/WebAppFactory.cs b/tests/WebApi.Tests.Integration/WebAppFactory.cs index 7c9f74d..892518a 100644 --- a/tests/WebApi.Tests.Integration/WebAppFactory.cs +++ b/tests/WebApi.Tests.Integration/WebAppFactory.cs @@ -18,7 +18,7 @@ public sealed class WebAppFactory : WebApplicationFactory, IAsync .WithImagePullPolicy(PullPolicy.Always) .Build(); - private const string DockerImage = "postgres:16.3-alpine"; + private const string DockerImage = "postgres:alpine"; public HttpClient HttpClient => CreateClient();